From 9717ad598879f8e0c2f0dc5eae6de89bc75e406d Mon Sep 17 00:00:00 2001 From: Shantanu Gupta Date: Tue, 5 Dec 2023 18:24:37 +0000 Subject: [PATCH] Fixed depreciation warnings and updated browserlist --- package-lock.json | 30 ++++++++++++++++++++---------- package.json | 4 ++-- webpack.config.base.js | 2 +- 3 files changed, 23 insertions(+), 13 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5e89164d..197af5d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12681,14 +12681,24 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==", + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] }, "node_modules/capture-exit": { "version": "2.0.0", @@ -46082,9 +46092,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001300", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz", - "integrity": "sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA==", + "version": "1.0.30001566", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001566.tgz", + "integrity": "sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==", "dev": true }, "capture-exit": { diff --git a/package.json b/package.json index a3893590..b7258133 100644 --- a/package.json +++ b/package.json @@ -51,15 +51,15 @@ "devDependencies": { "@babel/cli": "^7.16.8", "@babel/core": "^7.16.7", + "@babel/eslint-parser": "^7.16.0", "@babel/plugin-proposal-class-properties": "^7.16.7", "@babel/plugin-proposal-object-rest-spread": "^7.16.7", - "@babel/eslint-parser": "^7.16.0", "@babel/preset-env": "^7.16.8", "@babel/preset-flow": "^7.16.7", "@babel/preset-react": "^7.16.7", "@babel/register": "^7.16.9", - "@spotify/eslint-config-react": "^12.0.0", "@spotify/eslint-config-base": "^12.0.0", + "@spotify/eslint-config-react": "^12.0.0", "@spotify/web-scripts": "^12.0.0", "babel-jest": "^24.9.0", "babel-loader": "^8.2.3", diff --git a/webpack.config.base.js b/webpack.config.base.js index 58b2e344..fc4faa32 100644 --- a/webpack.config.base.js +++ b/webpack.config.base.js @@ -8,7 +8,7 @@ module.exports = { entry: ['./docs/src/main.js'], output: { path: path.join(__dirname, 'docs/build'), - filename: 'bundle.[hash].js', + filename: 'bundle.[fullhash].js', }, devServer: { port: 9876,