Skip to content

Commit 508bd0d

Browse files
authored
Merge pull request #486 from jneira/more-build-changes
Fix error handling of server exec discovery in windows
2 parents 7eb6a48 + cd2b91e commit 508bd0d

File tree

6 files changed

+17
-298
lines changed

6 files changed

+17
-298
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
node-version: 10.x
2222
- run: npm ci
23-
- run: npm run compile
23+
- run: npm run webpack
2424
- run: xvfb-run -a npm test
2525
if: runner.os == 'Linux'
2626
- run: npm test

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"stopOnEntry": false,
1212
"sourceMaps": true,
1313
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
14-
"preLaunchTask": "npm: watch"
14+
"preLaunchTask": "npm: webpack"
1515
},
1616
{
1717
"name": "Extension Tests",
@@ -22,7 +22,7 @@
2222
"stopOnEntry": false,
2323
"sourceMaps": true,
2424
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
25-
"preLaunchTask": "npm: watch"
25+
"preLaunchTask": "npm: test-compile"
2626
}
2727
]
2828
}

0 commit comments

Comments
 (0)