From 48ce6724a4cfd5ab6d42fba528eb4aedebca3fe7 Mon Sep 17 00:00:00 2001 From: Craigory Coppola Date: Wed, 10 May 2023 13:57:36 -0400 Subject: [PATCH] chore(repo): fix import in replace-e2e-executor for lint checks (#16923) --- .../plugin/src/migrations/update-16-2-0/replace-e2e-executor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin/src/migrations/update-16-2-0/replace-e2e-executor.ts b/packages/plugin/src/migrations/update-16-2-0/replace-e2e-executor.ts index 61835bca00683..8b5442d061110 100644 --- a/packages/plugin/src/migrations/update-16-2-0/replace-e2e-executor.ts +++ b/packages/plugin/src/migrations/update-16-2-0/replace-e2e-executor.ts @@ -5,7 +5,7 @@ import { updateProjectConfiguration, } from '@nx/devkit'; import { forEachExecutorOptions } from '@nx/devkit/src/generators/executor-options-utils'; -import type { NxPluginE2EExecutorOptions } from '@nx/plugin/src/executors/e2e/schema'; +import { NxPluginE2EExecutorOptions } from '../../executors/e2e/schema'; export default async function replaceE2EExecutor(tree: Tree): Promise { const projects = getProjects(tree);