Skip to content

Commit

Permalink
Merge pull request #570 from quip/kvnlam_peaceful-murdock
Browse files Browse the repository at this point in the history
  • Loading branch information
kvnlam authored May 8, 2024
2 parents 32d8f9a + 36d1a48 commit 7f17bb3
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 18 deletions.
3 changes: 1 addition & 2 deletions packages/Chevron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"cross-env": "^7.0.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
"webpack-cli": "^3.3.7"
}
}
2 changes: 1 addition & 1 deletion packages/handleRichTextBoxKeyEventNavigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"cross-env": "^7.0.3",
"webpack-cli": "^5.1.4"
"webpack-cli": "^3.3.7"
}
}
2 changes: 1 addition & 1 deletion packages/quip-test-utils/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/quiptext/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions packages/webpack-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"file-loader": "^6.2.0",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss-loader": "^8.1.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"less": "^3.10.2",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"regenerator-runtime": "^0.13.3",
"svg-react-loader": "^0.4.6",
"terser-webpack-plugin": "^5.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"terser-webpack-plugin": "^2.0.1",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"write-file-webpack-plugin": "^4.5.1"
},
"gitHead": "1633a60816f6da91d4b022751e9f3bfd45ae18c1"
Expand Down
4 changes: 2 additions & 2 deletions packages/webpack-config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require("fs");
const path = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const WriteFilePlugin = require("write-file-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const Autoprefixer = require("autoprefixer");
Expand All @@ -30,7 +30,7 @@ function minimizers() {
mangle: false,
},
}),
new CssMinimizerPlugin({}),
new OptimizeCSSAssetsPlugin({}),
];
}
return minimizers;
Expand Down

0 comments on commit 7f17bb3

Please sign in to comment.