Skip to content

Commit

Permalink
fix: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherPHolder committed Jan 27, 2024
1 parent bd76cf8 commit 97c9ee0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import executor from './executor';
import {createTreeWithEmptyWorkspace} from "@nrwl/devkit/testing";
import {normalizeOptions} from "../../generators/target/utils";
import {addProjectConfiguration, Tree, writeJson} from "@nrwl/devkit";
import {addProjectConfiguration, Tree, writeJson} from "@nx/devkit";
import {join} from "path";

const NPM_NAME = '@push-based/user-flow';
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-plugin/src/executors/user-flow/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {execSync} from 'child_process';
import {ExecutorContext} from "nx/src/config/misc-interfaces";
import * as process from "process";
import {CLI_MODES} from "@push-based/user-flow";
import {logger} from "@nrwl/devkit";
import {logger} from "@nx/devkit";


export default async function runExecutor(options: UserFlowExecutorSchema, context?: ExecutorContext & UserFlowExecutorSchema) {
Expand Down
2 changes: 1 addition & 1 deletion packages/nx-plugin/src/generators/install/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {getWorkspaceLayout, Tree, updateJson} from "@nrwl/devkit";
import {getWorkspaceLayout, Tree, updateJson} from "@nx/devkit";
import {join} from "path";
import {NormalizedSchema} from "./types";
import {InstallGeneratorSchema} from "./schema";
Expand Down

0 comments on commit 97c9ee0

Please sign in to comment.