@vscode/vsce 3.8.2-1 → 3.9.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 +2 -1
  2. package/package.json +1 -1
package/out/store.js CHANGED
@@ -31,6 +31,7 @@ const util_1 = require("./util");
31
31
  const validation_1 = require("./validation");
32
32
  const package_1 = require("./package");
33
33
  const publish_1 = require("./publish");
34
+ ;
34
35
  class FileStore {
35
36
  constructor(path, publishers) {
36
37
  this.path = path;
@@ -89,7 +90,7 @@ class KeytarStore {
89
90
  this.publishers = publishers;
90
91
  }
91
92
  static async open(serviceName = 'vscode-vsce') {
92
- const keytar = await import('keytar');
93
+ const keytar = await import('keytar').then(module => module.default);
93
94
  const creds = await keytar.findCredentials(serviceName);
94
95
  return new KeytarStore(keytar, serviceName, creds.map(({ account, password }) => ({ name: account, pat: password })));
95
96
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vsce",
3
- "version": "3.8.2-1",
3
+ "version": "3.9.1-0",
4
4
  "description": "VS Code Extensions Manager",
5
5
  "repository": {
6
6
  "type": "git",