@vscode/vsce 3.9.3-5 → 3.9.3-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -8
- package/out/npm.js +2 -4
- package/out/oidc.js +1 -3
- package/out/package.js +97 -60
- package/out/publicgalleryapi.js +3 -1
- package/out/publish.js +35 -26
- package/out/secretLint.js +94 -34
- package/out/store.js +7 -2
- package/out/util.js +2 -4
- package/package.json +6 -15
- package/out/typings/secret-lint-types.js +0 -878
package/out/util.js
CHANGED
|
@@ -118,10 +118,8 @@ function isCancelledError(error) {
|
|
|
118
118
|
return error === CancelledError;
|
|
119
119
|
}
|
|
120
120
|
class CancellationToken {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
this._cancelled = false;
|
|
124
|
-
}
|
|
121
|
+
listeners = [];
|
|
122
|
+
_cancelled = false;
|
|
125
123
|
get isCancelled() {
|
|
126
124
|
return this._cancelled;
|
|
127
125
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vsce",
|
|
3
|
-
"version": "3.9.3-
|
|
3
|
+
"version": "3.9.3-7",
|
|
4
4
|
"description": "VS Code Extensions Manager",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,18 +36,17 @@
|
|
|
36
36
|
"watch:test": "npm run test -- --watch"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
39
|
+
"node": ">= 22"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@azure/identity": "^4.1.0",
|
|
43
|
+
"@napi-rs/keyring": "^1.3.0",
|
|
43
44
|
"@secretlint/node": "^10.1.2",
|
|
44
|
-
"@secretlint/secretlint-formatter-sarif": "^10.1.2",
|
|
45
45
|
"@secretlint/secretlint-rule-no-dotenv": "^10.1.2",
|
|
46
46
|
"@secretlint/secretlint-rule-preset-recommend": "^10.1.2",
|
|
47
47
|
"@vscode/vsce-sign": "^2.0.0",
|
|
48
48
|
"azure-devops-node-api": "^12.5.0",
|
|
49
49
|
"chalk": "^4.1.2",
|
|
50
|
-
"cheerio": "^1.0.0-rc.9",
|
|
51
50
|
"cockatiel": "^3.1.2",
|
|
52
51
|
"commander": "^12.1.0",
|
|
53
52
|
"form-data": "^4.0.0",
|
|
@@ -55,13 +54,13 @@
|
|
|
55
54
|
"hosted-git-info": "^4.0.2",
|
|
56
55
|
"jsonc-parser": "^3.2.0",
|
|
57
56
|
"leven": "^3.1.0",
|
|
58
|
-
"
|
|
57
|
+
"marked": "^18.0.10",
|
|
59
58
|
"mime": "^1.3.4",
|
|
60
59
|
"minimatch": "^10.2.2",
|
|
61
60
|
"parse-semver": "^1.1.1",
|
|
61
|
+
"parse5": "^8.0.1",
|
|
62
62
|
"read": "^1.0.7",
|
|
63
63
|
"semver": "^7.5.2",
|
|
64
|
-
"tmp": "^0.2.3",
|
|
65
64
|
"typed-rest-client": "^1.8.4",
|
|
66
65
|
"url-join": "^4.0.1",
|
|
67
66
|
"xml2js": "^0.5.0",
|
|
@@ -70,28 +69,20 @@
|
|
|
70
69
|
},
|
|
71
70
|
"devDependencies": {
|
|
72
71
|
"@microsoft/api-extractor": "^7.33.7",
|
|
73
|
-
"@types/cheerio": "^0.22.29",
|
|
74
|
-
"@types/glob": "^8.1.0",
|
|
75
72
|
"@types/hosted-git-info": "^3.0.2",
|
|
76
|
-
"@types/markdown-it": "^0.0.2",
|
|
77
73
|
"@types/mime": "^1",
|
|
78
74
|
"@types/mocha": "^7.0.2",
|
|
79
|
-
"@types/node": "^
|
|
75
|
+
"@types/node": "^22.0.0",
|
|
80
76
|
"@types/read": "^0.0.28",
|
|
81
77
|
"@types/semver": "^6.0.0",
|
|
82
|
-
"@types/tmp": "^0.2.2",
|
|
83
78
|
"@types/url-join": "^4.0.1",
|
|
84
79
|
"@types/xml2js": "^0.4.4",
|
|
85
80
|
"@types/yauzl": "^2.9.2",
|
|
86
81
|
"@types/yazl": "^2.4.2",
|
|
87
82
|
"mocha": "^11.1.0",
|
|
88
|
-
"source-map-support": "^0.4.2",
|
|
89
83
|
"ts-node": "^10.9.1",
|
|
90
84
|
"typescript": "~5.9.0"
|
|
91
85
|
},
|
|
92
|
-
"optionalDependencies": {
|
|
93
|
-
"keytar": "^7.7.0"
|
|
94
|
-
},
|
|
95
86
|
"mocha": {
|
|
96
87
|
"require": [
|
|
97
88
|
"ts-node/register"
|