@nx/vue 17.3.1 → 18.0.0-beta.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": "17.3.1",
3
+ "version": "18.0.0-beta.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, 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": {
@@ -30,11 +30,11 @@
30
30
  "dependencies": {
31
31
  "minimatch": "9.0.3",
32
32
  "tslib": "^2.3.0",
33
- "@nx/devkit": "17.3.1",
34
- "@nx/js": "17.3.1",
35
- "@nx/eslint": "17.3.1",
36
- "@nx/vite": "17.3.1",
37
- "@nx/web": "17.3.1"
33
+ "@nx/devkit": "18.0.0-beta.1",
34
+ "@nx/js": "18.0.0-beta.1",
35
+ "@nx/eslint": "18.0.0-beta.1",
36
+ "@nx/vite": "18.0.0-beta.1",
37
+ "@nx/web": "18.0.0-beta.1"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public"
@@ -12,6 +12,7 @@ const create_application_files_1 = require("./lib/create-application-files");
12
12
  const add_vite_1 = require("./lib/add-vite");
13
13
  const create_ts_config_1 = require("../../utils/create-ts-config");
14
14
  const ensure_dependencies_1 = require("../../utils/ensure-dependencies");
15
+ const log_show_project_command_1 = require("@nx/devkit/src/utils/log-show-project-command");
15
16
  async function applicationGenerator(tree, _options) {
16
17
  const options = await (0, normalize_options_1.normalizeOptions)(tree, _options);
17
18
  const tasks = [];
@@ -54,6 +55,9 @@ async function applicationGenerator(tree, _options) {
54
55
  (0, devkit_1.toJS)(tree);
55
56
  if (!options.skipFormat)
56
57
  await (0, devkit_1.formatFiles)(tree);
58
+ tasks.push(() => {
59
+ (0, log_show_project_command_1.logShowProjectCommand)(options.projectName);
60
+ });
57
61
  return (0, devkit_1.runTasksInSerial)(...tasks);
58
62
  }
59
63
  exports.applicationGenerator = applicationGenerator;
@@ -11,6 +11,7 @@ const create_ts_config_1 = require("../../utils/create-ts-config");
11
11
  const component_1 = require("../component/component");
12
12
  const add_vite_1 = require("./lib/add-vite");
13
13
  const ensure_dependencies_1 = require("../../utils/ensure-dependencies");
14
+ const log_show_project_command_1 = require("@nx/devkit/src/utils/log-show-project-command");
14
15
  async function libraryGenerator(tree, schema) {
15
16
  const tasks = [];
16
17
  const options = await (0, normalize_options_1.normalizeOptions)(tree, schema);
@@ -66,6 +67,9 @@ async function libraryGenerator(tree, schema) {
66
67
  (0, devkit_1.toJS)(tree);
67
68
  if (!options.skipFormat)
68
69
  await (0, devkit_1.formatFiles)(tree);
70
+ tasks.push(() => {
71
+ (0, log_show_project_command_1.logShowProjectCommand)(options.name);
72
+ });
69
73
  return (0, devkit_1.runTasksInSerial)(...tasks);
70
74
  }
71
75
  exports.libraryGenerator = libraryGenerator;