From 8b21917b440befa11925b39174a1a59ee8bd79bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Mon, 30 Aug 2021 10:17:43 +0200 Subject: [PATCH] [Tests] use `@babel/eslint-parser` instead of `babel-eslint` --- .eslintrc | 2 +- package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.eslintrc b/.eslintrc index 015177073..b3ebbdc1e 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,7 +3,7 @@ "airbnb-base", "plugin:flowtype/recommended" ], - parser: "babel-eslint", + parser: "@babel/eslint-parser", plugins: [ "flowtype" ], diff --git a/package.json b/package.json index 32722fc0d..252e56d1b 100644 --- a/package.json +++ b/package.json @@ -31,11 +31,11 @@ "jest": "jest --coverage __tests__/**/*" }, "devDependencies": { - "@babel/cli": "^7.14.5", - "@babel/core": "^7.14.6", + "@babel/cli": "^7.14.8", + "@babel/core": "^7.15.0", + "@babel/eslint-parser": "^7.15.0", "@babel/plugin-transform-flow-strip-types": "^7.14.5", "aud": "^1.1.5", - "babel-eslint": "^10.1.0", "babel-jest": "^24.9.0", "babel-preset-airbnb": "^5.0.0", "eslint": "^3 || ^4 || ^5 || ^6 || ^7",