You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
594 B
23 lines
594 B
var config = {
|
|
lemon_bin: "./lemon-src/lemon-js",
|
|
input_path: "parser_template/",
|
|
output_path: "out/",
|
|
|
|
/**
|
|
* В папке назначения должен лежать файл parser.y;
|
|
* Или другой файл парсера с именем <file_name>.y
|
|
*/
|
|
file_name: "parser",
|
|
|
|
/**
|
|
* Флаги для лемона, можно посмотреть в README.md
|
|
*/
|
|
flags: "-l",
|
|
|
|
/**
|
|
* Before use it, you must configurate header.tmpl and footer.tmpl
|
|
*/
|
|
require_templates: "require_js/"
|
|
};
|
|
|
|
module.exports = config; |