move the parser to the internal dir
... | ... | @@ -7,8 +7,8 @@ |
"scripts": { | ||
"build": "npm run tsc && npm run peg", | ||
"build-debug": "npm run tsc && npm run peg-debug", | ||
"peg": "peggy --cache -o built/parser.js --allowed-start-rules fullParser,inlineParser,plainParser src/parser.pegjs", | ||
"peg-debug": "peggy --cache -o built/parser.js --allowed-start-rules fullParser,inlineParser,plainParser --trace src/parser.pegjs", | ||
"peg": "peggy --cache -o built/internal/parser.js --allowed-start-rules fullParser,inlineParser,plainParser src/internal/parser.pegjs", | ||
"peg-debug": "peggy --cache -o built/internal/parser.js --allowed-start-rules fullParser,inlineParser,plainParser --trace src/internal/parser.pegjs", | ||
"tsc": "tsc", | ||
"tsd": "tsd", | ||
"parse": "node ./built/cli/parse", | ||
... | ... |
Please register or sign in to comment