fix(bundling): add missing css-loader dependency to @nrwl/webpack (#12928)

This commit is contained in:
Jack Hsu 2022-11-01 16:27:59 -04:00 committed by GitHub
parent f4ddb6db93
commit f345b72ef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@
"chalk": "4.1.0",
"chokidar": "^3.5.1",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"dotenv": "~10.0.0",
"file-loader": "^6.2.0",

View File

@ -25,6 +25,7 @@ const IGNORE_MATCHES = {
web: ['http-server'],
webpack: [
// These are not being picked up because @babel/parser is failing on the files that import them.
'css-loader',
'style-loader',
'ts-loader',
'webpack-merge',