Skip to content

Commit

Permalink
chore(deps): upgrade compression-plugin to v11 (#68)
Browse files Browse the repository at this point in the history
remove cache option, now unsupported.
  • Loading branch information
alubbock authored Sep 3, 2024
1 parent a1d45ad commit c502898
Show file tree
Hide file tree
Showing 2 changed files with 2 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 @@ -31,7 +31,7 @@
},
"devDependencies": {
"bootstrap-loader": "^4.0.0",
"compression-webpack-plugin": "^6.1.1",
"compression-webpack-plugin": "^11.0.0",
"css-loader": "^2.1.0",
"expose-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.12.0",
Expand Down
3 changes: 1 addition & 2 deletions thunorweb/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ if (!isDebug) {
var CompressionPlugin = require("compression-webpack-plugin");
config.plugins.push(
new CompressionPlugin({
test: /\.(js|html|css|ico|map|svg|eot|otf|ttf|json)$/,
cache: true
test: /\.(js|html|css|ico|map|svg|eot|otf|ttf|json)$/
})
);
}
Expand Down

0 comments on commit c502898

Please sign in to comment.