From ee4f8aeb58033dc067b549bd8f1bcca98ddcd565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Mon, 24 Feb 2020 17:33:49 -0500 Subject: [PATCH] fix: oops --- eslint/babel-eslint-config-internal/package.json | 2 +- packages/babel-helper-fixtures/src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint/babel-eslint-config-internal/package.json b/eslint/babel-eslint-config-internal/package.json index 93324f718152..be276f659ff1 100644 --- a/eslint/babel-eslint-config-internal/package.json +++ b/eslint/babel-eslint-config-internal/package.json @@ -9,7 +9,7 @@ "repository": "https://github.com/babel/babel/tree/master/eslint/babel-eslint-config-internal", "main": "index.js", "peerDependencies": { - "babel-eslint": "^10.0.0 || ^11.0.0-0", + "@babel/eslint-parser": "^0.0.0", "eslint-plugin-flowtype": "^3.0.0" } } diff --git a/packages/babel-helper-fixtures/src/index.js b/packages/babel-helper-fixtures/src/index.js index 314eb0981520..f0b4cd0914d6 100644 --- a/packages/babel-helper-fixtures/src/index.js +++ b/packages/babel-helper-fixtures/src/index.js @@ -276,7 +276,7 @@ export default function get(entryLoc): Array { if (suiteOptsLoc) suite.options = require(suiteOptsLoc); for (const taskName of fs.readdirSync(suite.filename)) { - pushTask(taskName, suite.filename + "/" + taskName, suiteName, suites); + pushTask(taskName, suite.filename + "/" + taskName, suite, suiteName); } }