Skip to content

Commit e0b8959

Browse files
authored
Merge pull request #4508 from JoeRobich/use-vscode-test
Move off of the deprecated vscode package
2 parents 5497895 + 8792252 commit e0b8959

File tree

11 files changed

+248
-278
lines changed

11 files changed

+248
-278
lines changed

package-lock.json

Lines changed: 49 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,19 @@
3939
"compileDev": "tsc -p ./ && gulp tslint && webpack --mode development",
4040
"watch": "tsc -watch -p ./",
4141
"tdd": "mocha --config ./.mocharc.jsonc --watch --watch-extensions ts test/unitTests/**/*.test.ts*",
42-
"test": "gulp test",
43-
"test:unit": "gulp test:unit",
44-
"test:feature": "gulp test:feature",
45-
"test:integration": "gulp test:integration",
46-
"test:integration:singleCsproj": "gulp test:integration:singleCsproj",
47-
"test:integration:slnWithCsproj": "gulp test:integration:slnWithCsproj",
48-
"test:integration:slnFilterWithCsproj": "gulp test:integration:slnFilterWithCsproj",
42+
"test": "tsc -p ./ && gulp test",
43+
"test:unit": "tsc -p ./ && gulp test:unit",
44+
"test:feature": "tsc -p ./ && gulp test:feature",
45+
"test:integration": "tsc -p ./ && gulp test:integration",
46+
"test:integration:singleCsproj": "tsc -p ./ && gulp test:integration:singleCsproj",
47+
"test:integration:slnWithCsproj": "tsc -p ./ && gulp test:integration:slnWithCsproj",
48+
"test:integration:slnFilterWithCsproj": "tsc -p ./ && gulp test:integration:slnFilterWithCsproj",
4949
"test:release": "mocha --config ./.mocharc.jsonc test/releaseTests/**/*.test.ts",
5050
"test:artifacts": "mocha --config ./.mocharc.jsonc test/artifactTests/**/*.test.ts",
51-
"postinstall": "node ./node_modules/vscode/bin/install",
52-
"cov:instrument": "gulp cov:instrument",
53-
"cov:merge": "gulp cov:merge",
54-
"cov:merge-html": "gulp cov:merge-html",
55-
"cov:report": "npm-run-all cov:report:integration cov:report:unit",
56-
"cov:report:unit": "gulp cov:report:unit",
57-
"cov:report:integration": "gulp cov:report:integration",
51+
5852
"unpackage:vsix": "gulp vsix:release:unpackage",
5953
"gulp": "gulp"
6054
},
61-
"nyc": {
62-
"extends": "@istanbuljs/nyc-config-typescript"
63-
},
6455
"dependencies": {
6556
"async-file": "2.0.2",
6657
"fs-extra": "9.1.0",
@@ -96,6 +87,7 @@
9687
"@types/semver": "5.5.0",
9788
"@types/tmp": "0.0.33",
9889
"@types/unzipper": "^0.9.1",
90+
"@types/vscode": "1.44.0",
9991
"@types/yauzl": "2.9.1",
10092
"archiver": "5.3.0",
10193
"chai": "4.3.4",
@@ -121,7 +113,7 @@
121113
"typescript": "4.2.4",
122114
"unzipper": "0.10.11",
123115
"vsce": "1.57.0",
124-
"vscode": "1.1.37",
116+
"vscode-test": "1.5.2",
125117
"webpack": "5.34.0",
126118
"webpack-cli": "4.6.0"
127119
},

0 commit comments

Comments
 (0)