perf(build): optimize build scripts for parallel execution and remove redundant checks (#24307)

This commit is contained in:
Sehoon Shon
2026-03-31 13:46:36 -04:00
committed by GitHub
parent 7c4b497a84
commit 119dff3b73
2 changed files with 27 additions and 2 deletions
+1 -1
View File
@@ -108,7 +108,7 @@
"scripts": {
"prepackage": "npm run generate:notices && npm run check-types && npm run lint && npm run build:prod",
"build": "npm run build:dev",
"build:dev": "npm run check-types && npm run lint && node esbuild.js",
"build:dev": "node esbuild.js",
"build:prod": "node esbuild.js --production",
"generate:notices": "node ./scripts/generate-notices.js",
"prepare": "npm run generate:notices",