LemonJS/config.template

23 lines
594 B
Plaintext
Raw Normal View History

2019-01-29 08:02:47 +00:00
var config = {
lemon_bin: "./lemon-src/lemon-js",
2019-01-30 11:50:02 +00:00
input_path: "parser_template/",
output_path: "out/",
2019-01-29 08:02:47 +00:00
/**
* В папке назначения должен лежать файл parser.y;
* Или другой файл парсера с именем <file_name>.y
*/
2019-01-29 11:04:41 +00:00
file_name: "parser",
2019-01-29 08:02:47 +00:00
/**
* Флаги для лемона, можно посмотреть в README.md
*/
flags: "-l",
2019-01-29 11:25:40 +00:00
/**
* Before use it, you must configurate header.tmpl and footer.tmpl
*/
require_templates: "require_js/"
2019-01-29 08:02:47 +00:00
};
module.exports = config;