Skip to content

Commit

Permalink
Merge branch 'main' into renovate-ignore-postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock authored Sep 4, 2024
2 parents 0a17bf4 + 16137e8 commit 0dfabda
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion thunorweb/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"bootstrap-loader": "^4.0.0",
"compression-webpack-plugin": "^11.0.0",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"expose-loader": "^5.0.0",
"mini-css-extract-plugin": "^2.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.33.0",
"sass-loader": "^16.0.0",
Expand Down
4 changes: 2 additions & 2 deletions thunorweb/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require("path");
const BundleTracker = require("webpack-bundle-tracker");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const glob = require("glob");
const isDebug = (process.env.DJANGO_DEBUG === undefined ? false : process.env.DJANGO_DEBUG.toLowerCase() === "true");

Expand Down Expand Up @@ -122,7 +122,7 @@ var config = {
parallel: true,
sourceMap: true // set to true if you want JS source maps
}),
new OptimizeCSSAssetsPlugin({})
new CssMinimizerPlugin({})
]
}
};
Expand Down

0 comments on commit 0dfabda

Please sign in to comment.