@nx/vue 23.2.0-beta.3 → 23.2.0-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,11 +6,11 @@ const path = tslib_1.__importStar(require("path"));
6
6
  const devkit_1 = require("@nx/devkit");
7
7
  const js_1 = require("@nx/js");
8
8
  const create_ts_config_1 = require("../../../utils/create-ts-config");
9
- const onboarding_1 = require("nx/src/nx-cloud/utilities/onboarding");
9
+ const internal_1 = require("@nx/devkit/internal");
10
10
  async function createApplicationFiles(tree, options) {
11
- const onBoardingStatus = await (0, onboarding_1.createNxCloudOnboardingURLForWelcomeApp)(tree, options.nxCloudToken);
11
+ const onBoardingStatus = await (0, internal_1.createNxCloudOnboardingURLForWelcomeApp)(tree, options.nxCloudToken);
12
12
  const connectCloudUrl = onBoardingStatus === 'unclaimed' &&
13
- (await (0, onboarding_1.getNxCloudAppOnBoardingUrl)(options.nxCloudToken));
13
+ (await (0, internal_1.getNxCloudAppOnBoardingUrl)(options.nxCloudToken));
14
14
  (0, devkit_1.generateFiles)(tree, path.join(__dirname, '../files/common'), options.appProjectRoot, {
15
15
  ...options,
16
16
  offsetFromRoot: (0, devkit_1.offsetFromRoot)(options.appProjectRoot),
@@ -1,3 +1,3 @@
1
- import type { PackageJson } from 'nx/src/utils/package-json';
2
1
  import type { NormalizedSchema } from '../schema';
2
+ import { type PackageJson } from '@nx/devkit/internal';
3
3
  export declare function determineEntryFields(options: NormalizedSchema): Pick<PackageJson, 'module' | 'types' | 'exports'>;
@@ -1,6 +1,5 @@
1
- import { GeneratorCallback } from '@nx/devkit';
1
+ import { GeneratorCallback, Tree } from '@nx/devkit';
2
2
  import { Linter, LinterType } from '@nx/eslint';
3
- import { Tree } from 'nx/src/generators/tree';
4
3
  export declare function addLinting(host: Tree, options: {
5
4
  linter: Linter | LinterType;
6
5
  name: string;
@@ -4,7 +4,6 @@ exports.addLinting = addLinting;
4
4
  const devkit_1 = require("@nx/devkit");
5
5
  const eslint_1 = require("@nx/eslint");
6
6
  const internal_1 = require("@nx/eslint/internal");
7
- const path_1 = require("nx/src/utils/path");
8
7
  const versions_1 = require("./versions");
9
8
  async function addLinting(host, options, projectType) {
10
9
  if (options.linter === 'eslint') {
@@ -13,7 +12,7 @@ async function addLinting(host, options, projectType) {
13
12
  linter: options.linter,
14
13
  project: options.projectName,
15
14
  tsConfigPaths: [
16
- (0, path_1.joinPathFragments)(options.projectRoot, `tsconfig.${projectType}.json`),
15
+ (0, devkit_1.joinPathFragments)(options.projectRoot, `tsconfig.${projectType}.json`),
17
16
  ],
18
17
  unitTestRunner: options.unitTestRunner,
19
18
  skipFormat: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/vue",
3
- "version": "23.2.0-beta.3",
3
+ "version": "23.2.0-beta.5",
4
4
  "private": false,
5
5
  "description": "The Vue plugin for Nx contains executors and generators for managing Vue applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -63,15 +63,15 @@
63
63
  "dependencies": {
64
64
  "picomatch": "4.0.4",
65
65
  "tslib": "^2.3.0",
66
- "@nx/devkit": "23.2.0-beta.3",
67
- "@nx/eslint": "23.2.0-beta.3",
68
- "@nx/js": "23.2.0-beta.3",
69
- "@nx/vite": "23.2.0-beta.3",
70
- "@nx/vitest": "23.2.0-beta.3",
71
- "@nx/web": "23.2.0-beta.3"
66
+ "@nx/devkit": "23.2.0-beta.5",
67
+ "@nx/js": "23.2.0-beta.5",
68
+ "@nx/vite": "23.2.0-beta.5",
69
+ "@nx/vitest": "23.2.0-beta.5",
70
+ "@nx/eslint": "23.2.0-beta.5",
71
+ "@nx/web": "23.2.0-beta.5"
72
72
  },
73
73
  "devDependencies": {
74
- "nx": "23.2.0-beta.3"
74
+ "nx": "23.2.0-beta.5"
75
75
  },
76
76
  "publishConfig": {
77
77
  "access": "public"
@@ -81,10 +81,10 @@
81
81
  "vue-router": "^4.0.0",
82
82
  "vue-tsc": "^2.0.0",
83
83
  "@vitejs/plugin-vue": "^5.0.0 || ^6.0.0",
84
- "@nx/cypress": "23.2.0-beta.3",
85
- "@nx/playwright": "23.2.0-beta.3",
86
- "@nx/storybook": "23.2.0-beta.3",
87
- "@nx/rsbuild": "23.2.0-beta.3"
84
+ "@nx/cypress": "23.2.0-beta.5",
85
+ "@nx/playwright": "23.2.0-beta.5",
86
+ "@nx/rsbuild": "23.2.0-beta.5",
87
+ "@nx/storybook": "23.2.0-beta.5"
88
88
  },
89
89
  "peerDependenciesMeta": {
90
90
  "@nx/cypress": {