Fix publish scripts

This commit is contained in:
Luo Tim 2024-08-29 01:41:13 +08:00
parent a5e7230c81
commit e9c471d1ba

View File

@ -345,13 +345,13 @@
},
"scripts": {
"vscode:uninstall": "node ./dist/uninstall",
"vscode:prepublish": "node prebuild.js && webpack --mode production --devtool hidden-source-map",
"prebuild": "node prebuild.js",
"postbuild": "git checkout -- assets package.json",
"build:gui": "cd ./gui && yarn && yarn vscode",
"build": "webpack --config webpack.config.js && npm run build:gui",
"prepackage": "node prebuild.js",
"postpackage": "git checkout -- assets package.json",
"package": "webpack --mode production --devtool hidden-source-map && vsce package",
"package": "vsce package",
"dev": "webpack serve --config webpack.config.js --open",
"watch": "npm run prebuild && webpack --watch",
"lint": "eslint src --ext ts",