Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"vitest": "vitest run",
"vitest:watch": "vitest",
"wsproxy": "node ./src/wsproxy/local_proxy.js",
"build": "rm -rf build/web dist && mkdir -p build/web && pnpm run copyindex && pnpm run copyresource && pnpm run copyconfig && tsc && pnpm run -r --stream build",
"build": "rm -rf build/web dist && mkdir -p build/web && pnpm run copyindex && pnpm run copyresource && pnpm run copyconfig && pnpm run copymonaco && tsc && pnpm run -r --stream build",
"build:react-only": "pnpm run --prefix ./react build:only",
"server:p": "serve build/web",
"dev": "node scripts/dev.mjs",
Expand All @@ -29,6 +29,7 @@
"copyresource": "cp -Rp resources build/web && cp -Rp manifest build/web",
"copyconfig": "./scripts/copy-config.js && cp version.json build/web && cp manifest.json build/web",
"copyindex": "cp index.html build/web",
"copymonaco": "mkdir -p build/web/resources/monaco/vs && cp -R react/node_modules/monaco-editor/min/vs/. build/web/resources/monaco/vs/",
"prepare": "husky",
"theme-schema:update": "node scripts/gen-theme-schema.cjs"
},
Expand Down
Loading