Skip to content

Commit 20fdbd4

Browse files
CHANGE: @W-17970149@: The beginnings of refactorings to start removin global state ... (#188)
1 parent e402d5d commit 20fdbd4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+2866
-2775
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
root = true
22

33
[*]
4-
indent_style = tab
4+
indent_style = space
55
indent_size = 4
66
charset = utf-8
77
trim_trailing_whitespace = true

package-lock.json

+25-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"SFCA"
3232
],
3333
"dependencies": {
34-
"@salesforce/vscode-service-provider": "^1.3.0-rc.6.5",
34+
"@salesforce/vscode-service-provider": "^1.4.0",
3535
"@types/jest": "^29.5.14",
3636
"@types/semver": "^7.5.8",
3737
"@types/tmp": "^0.2.6",
@@ -58,6 +58,7 @@
5858
"mocha": "^10.1.0",
5959
"ovsx": "^0.10.1",
6060
"proxyquire": "^2.1.3",
61+
"rimraf": "*",
6162
"sinon": "^15.1.0",
6263
"ts-jest": "^29.2.6",
6364
"ts-node": "^10.9.1",
@@ -71,6 +72,7 @@
7172
"vscode:prepublish": "npm run package",
7273
"build": "npm run compile",
7374
"package": "npm run compile && npm run lint && node esbuild.js --production",
75+
"precompile": "tsc --build --clean && rimraf out",
7476
"compile": "tsc -p . --outDir out",
7577
"watch-tests": "tsc -p . -w --outDir out",
7678
"lint": "eslint src",
@@ -81,7 +83,7 @@
8183
"watch": "npm-run-all -p watch:*",
8284
"watch:esbuild": "node esbuild.js --watch",
8385
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
84-
"clean": "tsc --build --clean",
86+
"clean": "npm run precompile && rimraf coverage",
8587
"showcoverage": "npm run showcoverage-unit && npm run showcoverage-legacy",
8688
"showcoverage-unit": "open ./coverage/unit/lcov-report/index.html",
8789
"showcoverage-legacy": "open ./coverage/legacy/lcov-report/index.html"

0 commit comments

Comments
 (0)