Skip to content
Snippets Groups Projects
Commit d055b9f2 authored by 最萌小汐's avatar 最萌小汐
Browse files

update building script in Windows

parent 10d67344
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,9 @@ ...@@ -4,6 +4,9 @@
{ {
"type": "shell", "type": "shell",
"command": "./buildClient.sh", "command": "./buildClient.sh",
"windows": {
"command": ".\\buildClient.bat"
},
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
......
@echo off
echo Building VS Code Extension Client...
echo Compiling TypeScript...
cd client
call npm i
call npm run build
echo Building Addon Manager WebVue...
cd webvue
call npm i
call npm run build
echo Build complete!
...@@ -7,8 +7,7 @@ ...@@ -7,8 +7,7 @@
"publisher": "vscode", "publisher": "vscode",
"scripts": { "scripts": {
"lint": "npx eslint src/", "lint": "npx eslint src/",
"build": "tsc", "build": "tsc"
"postbuild": "cp package*.json out && cd out && npm ci --omit=dev"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
......
{ {
"name": "lua", "name": "lua",
"version": "3.6.11", "version": "3.6.12",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": {} "packages": {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment