Remove remaining webpack references for building extensions

All extensions now should be fully ported over to use esbuild instead of webpack
This commit is contained in:
Matt Bierner
2026-03-02 15:07:39 -08:00
parent 2a1295cbda
commit 3d7cf10fd1
13 changed files with 1903 additions and 2086 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6,7 +6,7 @@
"private": true,
"scripts": {
"compile": "node ../../node_modules/typescript/bin/tsc",
"bundle-webpack": "node ../../node_modules/webpack/bin/webpack --config ./webpack.config.js --bail",
"bundle-webpack": "webpack --config ./webpack.config.js --bail",
"esm-check": "node esm-check/esm-check.js",
"test": "node runner.js"
},
@@ -14,6 +14,11 @@
"@types/chai": "^4.2.14",
"axe-playwright": "^2.1.0",
"chai": "^4.2.0",
"warnings-to-errors-webpack-plugin": "^2.3.0"
"css-loader": "^6.9.1",
"file-loader": "^6.2.0",
"style-loader": "^3.3.2",
"warnings-to-errors-webpack-plugin": "^2.3.0",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
}
}