@nx/nuxt 20.3.2 → 20.3.4

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/nuxt",
3
- "version": "20.3.2",
3
+ "version": "20.3.4",
4
4
  "private": false,
5
5
  "description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt 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
  "tslib": "^2.3.0",
33
33
  "@nuxt/kit": "^3.10.0",
34
- "@nx/devkit": "20.3.2",
35
- "@nx/js": "20.3.2",
36
- "@nx/eslint": "20.3.2",
37
- "@nx/vue": "20.3.2",
38
- "@nx/vite": "20.3.2",
34
+ "@nx/devkit": "20.3.4",
35
+ "@nx/js": "20.3.4",
36
+ "@nx/eslint": "20.3.4",
37
+ "@nx/vue": "20.3.4",
38
+ "@nx/vite": "20.3.4",
39
39
  "@phenomnomnominal/tsquery": "~5.0.1"
40
40
  },
41
41
  "peerDependencies": {
@@ -18,6 +18,7 @@ const node_child_process_1 = require("node:child_process");
18
18
  const onboarding_1 = require("nx/src/nx-cloud/utilities/onboarding");
19
19
  const get_import_path_1 = require("@nx/js/src/utils/get-import-path");
20
20
  const ts_solution_setup_1 = require("@nx/js/src/utils/typescript/ts-solution-setup");
21
+ const sort_fields_1 = require("@nx/js/src/utils/package-json/sort-fields");
21
22
  async function applicationGenerator(tree, schema) {
22
23
  const tasks = [];
23
24
  const jsInitTask = await (0, js_1.initGenerator)(tree, {
@@ -124,6 +125,7 @@ async function applicationGenerator(tree, schema) {
124
125
  if (options.isUsingTsSolutionConfig) {
125
126
  (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.appProjectRoot);
126
127
  }
128
+ (0, sort_fields_1.sortPackageJsonFields)(tree, options.appProjectRoot);
127
129
  if (!options.skipFormat)
128
130
  await (0, devkit_1.formatFiles)(tree);
129
131
  tasks.push(() => {