Merge pull request #294145 from microsoft/joh/esbuild-the-things

esbuild for transpile and bundle
This commit is contained in:
Johannes Rieken
2026-02-11 17:07:01 +01:00
committed by GitHub
13 changed files with 2253 additions and 298 deletions
+4 -1
View File
@@ -20,7 +20,7 @@
"postinstall": "node build/npm/postinstall.ts",
"compile": "npm run gulp compile",
"compile-check-ts-native": "tsgo --project ./src/tsconfig.json --noEmit --skipLibCheck",
"watch": "npm-run-all2 -lp watch-client watch-extensions",
"watch": "npm-run-all2 -lp watch-client-transpile watch-client watch-extensions",
"watchd": "deemon npm run watch",
"watch-webd": "deemon npm run watch-web",
"kill-watchd": "deemon --kill npm run watch",
@@ -30,6 +30,9 @@
"watch-client": "npm run gulp watch-client",
"watch-clientd": "deemon npm run watch-client",
"kill-watch-clientd": "deemon --kill npm run watch-client",
"watch-client-transpile": "npx tsx build/next/index.ts transpile --watch",
"watch-client-transpiled": "deemon npm run watch-client-transpile",
"kill-watch-client-transpiled": "deemon --kill npm run watch-client-transpile",
"watch-extensions": "npm run gulp watch-extensions watch-extension-media",
"watch-extensionsd": "deemon npm run watch-extensions",
"kill-watch-extensionsd": "deemon --kill npm run watch-extensions",