@nx/vue 20.5.0 → 20.5.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/vue",
3
- "version": "20.5.0",
3
+ "version": "20.5.1",
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": {
@@ -31,11 +31,11 @@
31
31
  "dependencies": {
32
32
  "minimatch": "9.0.3",
33
33
  "tslib": "^2.3.0",
34
- "@nx/devkit": "20.5.0",
35
- "@nx/js": "20.5.0",
36
- "@nx/eslint": "20.5.0",
37
- "@nx/vite": "20.5.0",
38
- "@nx/web": "20.5.0"
34
+ "@nx/devkit": "20.5.1",
35
+ "@nx/js": "20.5.1",
36
+ "@nx/eslint": "20.5.1",
37
+ "@nx/vite": "20.5.1",
38
+ "@nx/web": "20.5.1"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
@@ -36,7 +36,7 @@ async function applicationGeneratorInternal(tree, _options) {
36
36
  // If we are using the new TS solution
37
37
  // We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
38
38
  if (options.isUsingTsSolutionConfig) {
39
- (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.appProjectRoot);
39
+ await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.appProjectRoot);
40
40
  }
41
41
  const nxJson = (0, devkit_1.readNxJson)(tree);
42
42
  options.addPlugin ??=
@@ -32,7 +32,7 @@ async function libraryGeneratorInternal(tree, schema) {
32
32
  // If we are using the new TS solution
33
33
  // We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
34
34
  if (options.isUsingTsSolutionConfig) {
35
- (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.projectRoot);
35
+ await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.projectRoot);
36
36
  }
37
37
  if (options.isUsingTsSolutionConfig) {
38
38
  const packageJson = {