Skip to content

Commit 4d4196e

Browse files
committed
Run build steps sequentially to let antlr build files
Note that there could be a better way to do this to allow tsc --noEmit to run without breaking when the output antlr files aren't there, but we can keep things simple for now
1 parent a31a655 commit 4d4196e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@
144144
},
145145
"scripts": {
146146
"vscode:prepublish": "npm run package",
147-
"build": "npm-run-all -p build:* && npm run check-types && node esbuild.js",
148-
"package": "npm-run-all -p build:* && npm run check-types && node esbuild.js --production",
147+
"build": "npm-run-all -s build:* && npm run check-types && node esbuild.js",
148+
"package": "npm-run-all -s build:* && npm run check-types && node esbuild.js --production",
149149
"check-types": "tsc --noEmit",
150150
"watch": "npm-run-all -p watch:*",
151151
"watch:esbuild": "node esbuild.js --watch",

0 commit comments

Comments
 (0)