@vscode/vsce 3.8.0 → 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.
Files changed (2) hide show
  1. package/out/store.js +1 -1
  2. package/package.json +3 -3
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 Promise.resolve().then(() => __importStar(require('keytar')));
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.8.0",
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": ">= 20"
39
+ "node": ">= 22"
40
40
  },
41
41
  "dependencies": {
42
42
  "@azure/identity": "^4.1.0",
@@ -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": "^16.11.7",
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",