Skip to content

Commit

Permalink
🐛 Fixes Build Breakage on *nix
Browse files Browse the repository at this point in the history
  • Loading branch information
brucificus committed Dec 15, 2023
1 parent eba9bf9 commit 5004a86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"scripts": {
"prepare": "husky install",
"test": "jest",
"build.cpygrammars": "cpy grammars/html/*.g4 ./antlr4ts_out/",
"build.antlr4ts": "antlr4ts -visitor antlr4ts_out/*.g4",
"postbuild.antlr4ts": "rimraf antlr4ts_out/*.g4",
"build.cpygrammars": "cpy \"grammars/html/*.g4\" --flat ./antlr4ts_out",
"build.antlr4ts": "cd ./antlr4ts_out/ && antlr4ts -visitor *.g4",
"postbuild.antlr4ts": "rimraf --glob \"antlr4ts_out/*.g4\"",
"build.tsc": "tsc",
"build": "npm run build.cpygrammars && npm run build.antlr4ts && npm run build.tsc",
"prepublishOnly": "npm run build && npm run test",
Expand Down

0 comments on commit 5004a86

Please sign in to comment.