Skip to content

Commit a59ee14

Browse files
committed
chore: add js
1 parent 4c2c20d commit a59ee14

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

packages/nx-plugin/src/plugin/target/configuration-target.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { TargetConfiguration } from '@nx/devkit';
2-
import type { RunCommandsOptions } from 'nx/src/executors/run-commands/run-commands.impl';
3-
import { objectToCliArgs } from '../../executors/internal/cli';
4-
import { PACKAGE_NAME } from '../../internal/constants';
5-
import { CP_TARGET_NAME } from '../constants';
2+
import type { RunCommandsOptions } from 'nx/src/executors/run-commands/run-commands.impl.js';
3+
import { objectToCliArgs } from '../../executors/internal/cli.js';
4+
import { PACKAGE_NAME } from '../../internal/constants.js';
5+
import { CP_TARGET_NAME } from '../constants.js';
66

77
export function createConfigurationTarget(options?: {
88
targetName?: string;

packages/nx-plugin/src/plugin/target/executor-target.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { TargetConfiguration } from '@nx/devkit';
2-
import { PACKAGE_NAME } from '../../internal/constants';
3-
import type { ProjectPrefixOptions } from '../types';
2+
import { PACKAGE_NAME } from '../../internal/constants.js';
3+
import type { ProjectPrefixOptions } from '../types.js';
44

55
export function createExecutorTarget(options?: {
66
bin?: string;

packages/nx-plugin/src/plugin/target/targets.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { readdir } from 'node:fs/promises';
2-
import { CP_TARGET_NAME } from '../constants';
3-
import type { NormalizedCreateNodesContext } from '../types';
4-
import { createConfigurationTarget } from './configuration-target';
5-
import { CODE_PUSHUP_CONFIG_REGEX } from './constants';
6-
import { createExecutorTarget } from './executor-target';
2+
import { CP_TARGET_NAME } from '../constants.js';
3+
import type { NormalizedCreateNodesContext } from '../types.js';
4+
import { createConfigurationTarget } from './configuration-target.js';
5+
import { CODE_PUSHUP_CONFIG_REGEX } from './constants.js';
6+
import { createExecutorTarget } from './executor-target.js';
77

88
export async function createTargets(
99
normalizedContext: NormalizedCreateNodesContext,

0 commit comments

Comments
 (0)