Skip to content

Commit b7f102b

Browse files
committed
Invoke npm commands with "node" rather than the shebang
Needed on our production Windows machines.
1 parent e10fe78 commit b7f102b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/vscode/ada/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@
245245
},
246246
"scripts": {
247247
"vscode:prepublish": "npm run compile",
248-
"compile": "./node_modules/typescript/bin/tsc",
249-
"watch": "./node_modules/typescript/bin/tsc -watch",
248+
"compile": "node ./node_modules/typescript/bin/tsc",
249+
"watch": "node ./node_modules/typescript/bin/tsc -watch",
250250
"pretest": "npm run compile",
251251
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet --fix",
252252
"test": "node ./out/test/runTest.js"

0 commit comments

Comments
 (0)