Esbuild a few more built-in extensions

Switches from webpack to esbuild for `merge-conflict`, `references-view`,  `search-result`, and `simple-browser`
This commit is contained in:
Matt Bierner
2026-02-13 15:00:06 -08:00
parent 552db6b5ba
commit 75a0ad4f75
26 changed files with 183 additions and 127 deletions

View File

@@ -72,8 +72,12 @@
"vscode:prepublish": "npm run build-ext && npm run build-webview",
"build-ext": "node ../../node_modules/gulp/bin/gulp.js --gulpfile ../../build/gulpfile.extensions.mjs compile-extension:simple-browser ./tsconfig.json",
"build-webview": "node ./esbuild.webview.mts",
"compile-web": "npx webpack-cli --config extension-browser.webpack.config --mode none",
"watch-web": "npx webpack-cli --config extension-browser.webpack.config --mode none --watch --info-verbosity verbose"
"compile-web": "npm-run-all2 -lp bundle-web typecheck-web",
"bundle-web": "node ./esbuild.browser.mts",
"typecheck-web": "tsgo --project ./tsconfig.json --noEmit",
"watch-web": "npm-run-all2 -lp watch-bundle-web watch-typecheck-web",
"watch-bundle-web": "node ./esbuild.browser.mts --watch",
"watch-typecheck-web": "tsgo --project ./tsconfig.json --noEmit --watch"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.8"