Skip to content

Commit

Permalink
chore: fix parser build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed Apr 20, 2021
1 parent d5bd17d commit 0d4f99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build": "npm run build:core && npm run build:parser",
"build:core": "tsc",
"build:parser": "tsc src/parser/*.ts --module CommonJS --outDir parser --declaration && echo '{ \"type\": \"commonjs\" }' > parser/package.json",
"build:parser": "tsc 'src/parser/*.ts' --module CommonJS --outDir parser --declaration && echo '{ \"type\": \"commonjs\" }' > parser/package.json",
"dev": "tsc --watch",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier -w '{src,test}/**/*.{js,ts}'",
Expand Down

0 comments on commit 0d4f99d

Please sign in to comment.