From 8b9cf2253c42e99dfb8dc71ae372fc0fe45d6d90 Mon Sep 17 00:00:00 2001 From: glebbash Date: Wed, 19 Jun 2024 15:13:19 +0100 Subject: [PATCH] fix: use custom build scripts --- extensions.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/extensions.json b/extensions.json index b2320d100..854ed7ed3 100644 --- a/extensions.json +++ b/extensions.json @@ -1052,11 +1052,16 @@ }, "ms-vscode.wasm-wasi-core": { "repository": "https://github.com/microsoft/vscode-wasm.git", - "location": "wasm-wasi-core" + "location": "wasm-wasi-core", + "custom": [ + "cd wasm-wasi-core && jq '.scripts[\"update:version\"] = \"\"' package.json > tmp.json && mv tmp.json package.json", + "cd wasm-wasi-core && vsce package -o extension.vsix" + ] }, "ms-vscode.webshell": { "repository": "https://github.com/microsoft/vscode-wasm.git", - "location": "webshell" + "location": "webshell", + "custom": ["cd webshell && vsce package -o extension.vsix"] }, "msjsdiag.debugger-for-edge": { "repository": "https://github.com/Microsoft/vscode-edge-debug2"