Skip to content

Commit

Permalink
Update depedencies across packages
Browse files Browse the repository at this point in the history
Update webpack (to v5) and related plugins to latest major version. Update the rest of the dependencies to the latest minor versions.
  • Loading branch information
sean-mckenna committed Sep 24, 2024
1 parent 4261650 commit 4babfc5
Show file tree
Hide file tree
Showing 11 changed files with 25,014 additions and 31,099 deletions.
18,360 changes: 8,645 additions & 9,715 deletions packages/data-grid/package-lock.json

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions packages/data-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"main": "dist/index.js",
"scripts": {
"link": "npm link",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack",
"watch": "NODE_OPTIONS=--openssl-legacy-provider webpack --watch",
"watch:dev": "NODE_OPTIONS=--openssl-legacy-provider webpack --watch --env.development",
"build": "webpack",
"watch": "webpack --watch",
"watch:dev": "webpack --watch --env development",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"test:watch": "jest --watch",
Expand Down Expand Up @@ -52,7 +52,7 @@
"connect-history-api-fallback": "^1.6.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"css-loader": "^2.1.0",
"css-loader": "^7.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
Expand All @@ -65,36 +65,36 @@
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"i18next": "^15.0.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"i18next": "^23.15.1",
"i18next-xhr-backend": "^2.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"jest-prop-type-error": "^1.1.0",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"mini-css-extract-plugin": "^2.9.1",
"postcss-loader": "^8.1.1",
"prettier": "^1.19.1",
"prettier-stylelint": "^0.4.2",
"query-string": "^6.13.1",
"raw-loader": "^1.0.0",
"raw-loader": "^4.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-i18next": "^10.13.2",
"react-i18next": "^15.0.2",
"react-router-dom": "^4.3.1",
"resolve-url-loader": "^3.1.1",
"sass": "^1.49.11",
"sass-loader": "^8.0.2",
"sinon": "^7.2.5",
"sinon-chai": "^3.5.0",
"style-loader": "^0.23.1",
"style-loader": "^4.0.0",
"url-search-params": "^1.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.6.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"jest": {
"setupFiles": [
Expand Down
6 changes: 4 additions & 2 deletions packages/data-grid/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ module.exports = env => ({
},
output: {
filename: 'index.js',
library: 'data-grid',
libraryTarget: 'umd',
library: {
name: 'data-grid',
type: 'umd',
},
path: paths.dist,
publicPath: './',
},
Expand Down
Loading

0 comments on commit 4babfc5

Please sign in to comment.