🐱
Showing
- .gitignore 2 additions, 0 deletions.gitignore
- package.json 6 additions, 2 deletionspackage.json
- src/client/main-entry.ts 3 additions, 3 deletionssrc/client/main-entry.ts
- src/index.ts 3 additions, 3 deletionssrc/index.ts
- src/parser/core-parser.pegjs 0 additions, 0 deletionssrc/parser/core-parser.pegjs
- src/parser/peg-parser.d.ts 0 additions, 0 deletionssrc/parser/peg-parser.d.ts
- webpack.config.js 1 addition, 1 deletionwebpack.config.js
... | ... | @@ -6,8 +6,8 @@ |
"scripts": { | ||
"build": "npm run peg && npm run tsc && npm run webpack", | ||
"build-dev": "npm run peg-dev && npm run tsc && npm run webpack-dev", | ||
"peg": "mkdirp ./built/parser && pegjs -o built/parser/coreParser.js src/parser/coreParser.pegjs", | ||
"peg-dev": "mkdirp ./built/parser && pegjs -o built/parser/coreParser.js --trace src/parser/coreParser.pegjs", | ||
"peg": "mkdirp ./built/parser && pegjs -o built/parser/core-parser.js src/parser/core-parser.pegjs", | ||
"peg-dev": "mkdirp ./built/parser && pegjs -o built/parser/core-parser.js --trace src/parser/core-parser.pegjs", | ||
"tsc": "tsc", | ||
"webpack": "webpack --mode=production", | ||
"webpack-dev": "webpack --mode=development", | ||
... | ... | @@ -26,5 +26,9 @@ |
"typescript": "3.7.x", | ||
"webpack": "4.40.x", | ||
"webpack-cli": "3.3.x" | ||
}, | ||
"dependencies": { | ||
"@types/parsimmon": "^1.10.1", | ||
"parsimmon": "^1.13.0" | ||
} | ||
} |
File moved
File moved
Please register or sign in to comment