From 3f824a0600a927b72e41823a5719294892e9c849 Mon Sep 17 00:00:00 2001 From: guesung Date: Sat, 10 Aug 2024 13:48:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20publish=EC=99=80=20package=EC=9D=98=20sc?= =?UTF-8?q?ript=EB=A5=BC=20=EC=88=98=EC=A0=95=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/microsoft/vscode-vsce/issues/421 --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4fb2e72..9379cae 100644 --- a/package.json +++ b/package.json @@ -28,18 +28,18 @@ }, "icon": "logo.png", "scripts": { - "vscode:prepublish": "pnpm run package", "compile": "pnpm run check-types && pnpm run lint && node esbuild.js", "watch": "npm-run-all -p watch:*", "watch:esbuild": "node esbuild.js --watch", "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", - "package": "pnpm run check-types && pnpm run lint && node esbuild.js --production", "compile-tests": "tsc -p . --outDir out", "watch-tests": "tsc -p . -w --outDir out", "pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint", "check-types": "tsc --noEmit", "lint": "eslint src --ext ts", - "test": "vscode-test" + "test": "vscode-test", + "package": "pnpm vsce package --no-dependencies", + "publish": "pnpm vsce publish --no-dependencies" }, "devDependencies": { "@guesung/eslint-config": "^1.0.4",