From 0c0ab92e2c6fc273db5cf7ffc7745ca59b93a446 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Mon, 26 Aug 2019 08:31:01 +0200 Subject: [PATCH] remove re-exports from jest-core --- CHANGELOG.md | 1 + packages/jest-cli/src/index.ts | 8 -------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc5a0bb5ac69..ce698c98f80e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ - `[docs]` Fix broken link pointing to legacy JS file in "Snapshot Testing". - `[jest]` [**BREAKING**] Use ESM exports ([#8874](https://github.com/facebook/jest/pull/8874)) - `[jest-cli]` [**BREAKING**] Use ESM exports ([#8874](https://github.com/facebook/jest/pull/8874)) +- `[jest-cli]` [**BREAKING**] Remove re-exports from `@jest/core` ([#8874](https://github.com/facebook/jest/pull/8874)) - `[jest-environment-jsdom]` [**BREAKING**] Upgrade JSDOM from v11 to v15 ([#8851](https://github.com/facebook/jest/pull/8851)) - `[jest-util]` [**BREAKING**] Remove deprecated exports ([#8863](https://github.com/facebook/jest/pull/8863)) - `[jest-validate]` [**BREAKING**] Use ESM exports ([#8874](https://github.com/facebook/jest/pull/8874)) diff --git a/packages/jest-cli/src/index.ts b/packages/jest-cli/src/index.ts index 2f8b64d151d9..67f1ad99ff3f 100644 --- a/packages/jest-cli/src/index.ts +++ b/packages/jest-cli/src/index.ts @@ -5,12 +5,4 @@ * LICENSE file in the root directory of this source tree. */ -// TODO: remove @jest/core exports for the next major -export { - SearchSource, - TestScheduler, - TestWatcher, - getVersion, - runCLI, -} from '@jest/core'; export {run} from './cli';