Skip to content

Commit 378b4c9

Browse files
authored
use vsce-sign module from npm (microsoft#205511)
* update distro * use vsce-sign module * update distro * update distro
1 parent 3c1ceb6 commit 378b4c9

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

build/.moduleignore

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,11 @@ native-watchdog/build/**
6363
native-watchdog/src/**
6464
!native-watchdog/build/Release/*.node
6565

66-
node-vsce-sign/**
67-
!node-vsce-sign/src/main.js
68-
!node-vsce-sign/package.json
69-
!node-vsce-sign/bin/**
66+
@vscode/vsce-sign/**
67+
!@vscode/vsce-sign/src/main.d.ts
68+
!@vscode/vsce-sign/src/main.js
69+
!@vscode/vsce-sign/package.json
70+
!@vscode/vsce-sign/bin/**
7071

7172
windows-foreground-love/binding.gyp
7273
windows-foreground-love/build/**

build/gulpfile.vscode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
281281
'**/node-pty/lib/worker/conoutSocketWorker.js',
282282
'**/node-pty/lib/shared/conout.js',
283283
'**/*.wasm',
284-
'**/node-vsce-sign/bin/*',
284+
'**/@vscode/vsce-sign/bin/*',
285285
], 'node_modules.asar'));
286286

287287
let all = es.merge(

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-oss-dev",
33
"version": "1.87.0",
4-
"distro": "660e1818ca4ddccb41c09b6a44360c278ae1610e",
4+
"distro": "ca316c089fc5ea2836f210e13cf89d4bd52a3309",
55
"author": {
66
"name": "Microsoft Corporation"
77
},

src/vs/platform/extensionManagement/node/extensionSignatureVerificationService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class ExtensionSignatureVerificationService implements IExtensionSignatur
5454
if (!this.moduleLoadingPromise) {
5555
this.moduleLoadingPromise = new Promise(
5656
(resolve, reject) => require(
57-
['node-vsce-sign'],
57+
['@vscode/vsce-sign'],
5858
async (obj) => {
5959
const instance = <typeof vsceSign>obj;
6060

0 commit comments

Comments
 (0)