Skip to content

Commit

Permalink
chore: update dependencies (#2636)
Browse files Browse the repository at this point in the history
* chore: update dependencies

* fix babel plugins and lint errors

* switch out obselete browser plugin

* add babel config for jest

* revert some babel/jest package bumps

* npm install

* tmp remove werkzeug pin

---------

Co-authored-by: Seve Badajoz <[email protected]>
  • Loading branch information
seve and Seve Badajoz authored Oct 21, 2023
1 parent 2d7aab3 commit 4bb9a2b
Show file tree
Hide file tree
Showing 7 changed files with 4,215 additions and 18,690 deletions.
4 changes: 2 additions & 2 deletions client/configuration/babel/babel.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ module.exports = {
"@babel/plugin-proposal-function-bind",
["@babel/plugin-proposal-decorators", { legacy: true }],
["@babel/plugin-proposal-class-properties", { loose: true }],
["@babel/plugin-proposal-private-methods", { loose: true }],
["@babel/plugin-proposal-private-property-in-object", { loose: true }],
["@babel/plugin-transform-private-methods", { loose: true }],
["@babel/plugin-transform-private-property-in-object", { loose: true }],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
Expand Down
4 changes: 2 additions & 2 deletions client/configuration/babel/babel.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ module.exports = {
"@babel/plugin-proposal-function-bind",
["@babel/plugin-proposal-decorators", { legacy: true }],
["@babel/plugin-proposal-class-properties", { loose: true }],
["@babel/plugin-proposal-private-methods", { loose: true }],
["@babel/plugin-proposal-private-property-in-object", { loose: true }],
["@babel/plugin-transform-private-methods", { loose: true }],
["@babel/plugin-transform-private-property-in-object", { loose: true }],
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-transform-react-constant-elements",
"@babel/plugin-transform-runtime",
Expand Down
2 changes: 1 addition & 1 deletion client/configuration/webpack/webpack.config.shared.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const path = require("path");
const fs = require("fs");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const ObsoleteWebpackPlugin = require("obsolete-webpack-plugin");
const ObsoleteWebpackPlugin = require("webpack-obsolete-plugin");

const src = path.resolve("src");
const nodeModules = path.resolve("node_modules");
Expand Down
Loading

0 comments on commit 4bb9a2b

Please sign in to comment.