Skip to content

Commit

Permalink
Merge pull request #22 from tfso/chore/replacing-pegjs-with-peggy
Browse files Browse the repository at this point in the history
chore/Replacing pegjs with peggy
  • Loading branch information
lostfields authored Mar 7, 2024
2 parents e66edb3 + b88dc84 commit 38fad26
Show file tree
Hide file tree
Showing 6 changed files with 9,820 additions and 1,536 deletions.
2 changes: 1 addition & 1 deletion js-enumerable.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
},
"extensions": {
"recommendations": [
"maty.vscode-mocha-sidebar", "eamodio.toggle-excluded-files"
"maty.vscode-mocha-sidebar", "eamodio.toggle-excluded-files", "PeggyJS.peggy-language"
]
}
}
146 changes: 134 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"analyze": "webpack --profile --json > ./stats.json && webpack-bundle-analyzer ./stats.json",
"browserify": "browserify src/test/index.ts -p [ tsify --noImplicitAny ] > lib/mocha-bundle.js",
"grammar": "npm run grammar:javascript && npm run grammar:odata",
"grammar:javascript": "pegjs -O size -o ./src/linq/peg/parser/javascript-parser.js ./src/linq/peg/grammar/javascript.pegjs",
"grammar:odata": "pegjs -O size -o ./src/linq/peg/parser/odata-parser.js ./src/linq/peg/grammar/odata.pegjs"
"grammar:javascript": "peggy --format es -o ./src/linq/peg/parser/javascript-parser.js ./src/linq/peg/grammar/javascript.pegjs",
"grammar:odata": "peggy --format es -o ./src/linq/peg/parser/odata-parser.js ./src/linq/peg/grammar/odata.pegjs"
},
"author": "Nicolai Gjærum",
"license": "MIT",
Expand All @@ -32,14 +32,14 @@
"@types/node": "^16.6.2",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"pegjs": "^0.10.0",
"babel-loader": "^8.2.3",
"babelify": "^10.0.0",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-tfso": "npm:@tfso/eslint-config@^1.1.4",
"mocha": "^10.2.0",
"peggy": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
Expand Down
Loading

0 comments on commit 38fad26

Please sign in to comment.