From 2c90ff497af2651069529491477edfa57daa9f08 Mon Sep 17 00:00:00 2001 From: Victor Grousset/tuxayo Date: Mon, 14 Oct 2024 19:21:25 +0200 Subject: [PATCH] Bug 38167: Remove Babel which was only used by Webpack And our old versions was depending on a old buggy version of "globals" that broke ESLint when using new config file format. Removing Babel if it's not used anymore instead of updating it. (There would be a way to test the updat works anyway. @vue/cli-service was depending on babel core. Removing it since it's deprecated (see replacements below) instead having to keep a subset of Babel packages and updating them. https://cli.vuejs.org/#getting-started https://github.com/vuejs/vue-cli Signed-off-by: Paul Derscheid --- package.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/package.json b/package.json index 3453e70f95..b27241b1ca 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,6 @@ "@fortawesome/vue-fontawesome": "^3.0.0-5", "@popperjs/core": "^2.11.6", "@redocly/cli": "^1.25.11", - "@vue/cli-service": "^5.0.1", - "babel-core": "^7.0.0-beta.3", "bootstrap": "^5.3.3", "css-loader": "^6.6.0", "cypress": "^12.17.2", @@ -69,13 +67,9 @@ "author": "", "license": "GPL-3.0", "devDependencies": { - "@babel/core": "^7.17.5", - "@babel/preset-env": "^7.16.11", "@rspack/cli": "^1.0.1", "@rspack/core": "^1.0.1", "@vue/compiler-sfc": "^3.2.31", - "babel-loader": "^8.2.3", - "babelify": "^10.0.0", "browserify": "^17.0.0", "clean-webpack-plugin": "^4.0.0", "eslint": "^9.12.0", -- 2.47.0