@vscode/vsce 3.7.2-9 → 3.8.1-0
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/out/store.js +1 -1
- package/package.json +4 -4
package/out/store.js
CHANGED
|
@@ -89,7 +89,7 @@ class KeytarStore {
|
|
|
89
89
|
this.publishers = publishers;
|
|
90
90
|
}
|
|
91
91
|
static async open(serviceName = 'vscode-vsce') {
|
|
92
|
-
const keytar = await
|
|
92
|
+
const keytar = await import('keytar');
|
|
93
93
|
const creds = await keytar.findCredentials(serviceName);
|
|
94
94
|
return new KeytarStore(keytar, serviceName, creds.map(({ account, password }) => ({ name: account, pat: password })));
|
|
95
95
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vsce",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.1-0",
|
|
4
4
|
"description": "VS Code Extensions Manager",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,7 +36,7 @@
|
|
|
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",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"typed-rest-client": "^1.8.4",
|
|
67
67
|
"url-join": "^4.0.1",
|
|
68
68
|
"xml2js": "^0.5.0",
|
|
69
|
-
"yauzl": "^2.
|
|
69
|
+
"yauzl": "^3.2.1",
|
|
70
70
|
"yazl": "^2.2.2"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@types/mime": "^1",
|
|
79
79
|
"@types/minimatch": "^3.0.3",
|
|
80
80
|
"@types/mocha": "^7.0.2",
|
|
81
|
-
"@types/node": "^
|
|
81
|
+
"@types/node": "^22.19.17",
|
|
82
82
|
"@types/read": "^0.0.28",
|
|
83
83
|
"@types/semver": "^6.0.0",
|
|
84
84
|
"@types/tmp": "^0.2.2",
|