@nx/nuxt 18.0.0-beta.0 → 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/nuxt",
|
|
3
|
-
"version": "18.0.0-beta.
|
|
3
|
+
"version": "18.0.0-beta.1",
|
|
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, 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,10 +30,10 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"tslib": "^2.3.0",
|
|
32
32
|
"@nuxt/kit": "^3.8.1",
|
|
33
|
-
"@nx/devkit": "18.0.0-beta.
|
|
34
|
-
"@nx/js": "18.0.0-beta.
|
|
35
|
-
"@nx/eslint": "18.0.0-beta.
|
|
36
|
-
"@nx/vue": "18.0.0-beta.
|
|
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/vue": "18.0.0-beta.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {},
|
|
39
39
|
"publishConfig": {
|
|
@@ -13,6 +13,7 @@ const add_linting_1 = require("../../utils/add-linting");
|
|
|
13
13
|
const add_vitest_1 = require("./lib/add-vitest");
|
|
14
14
|
const vue_1 = require("@nx/vue");
|
|
15
15
|
const ensure_dependencies_1 = require("./lib/ensure-dependencies");
|
|
16
|
+
const log_show_project_command_1 = require("@nx/devkit/src/utils/log-show-project-command");
|
|
16
17
|
async function applicationGenerator(tree, schema) {
|
|
17
18
|
const tasks = [];
|
|
18
19
|
const options = await (0, normalize_options_1.normalizeOptions)(tree, schema);
|
|
@@ -75,6 +76,9 @@ async function applicationGenerator(tree, schema) {
|
|
|
75
76
|
(0, devkit_1.toJS)(tree);
|
|
76
77
|
if (!options.skipFormat)
|
|
77
78
|
await (0, devkit_1.formatFiles)(tree);
|
|
79
|
+
tasks.push(() => {
|
|
80
|
+
(0, log_show_project_command_1.logShowProjectCommand)(options.projectName);
|
|
81
|
+
});
|
|
78
82
|
return (0, devkit_1.runTasksInSerial)(...tasks);
|
|
79
83
|
}
|
|
80
84
|
exports.applicationGenerator = applicationGenerator;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
3
|
"cli": "nx",
|
|
4
4
|
"$id": "NxNuxtApp",
|
|
5
5
|
"title": "Create a Nuxt Application for Nx",
|
|
@@ -89,11 +89,11 @@
|
|
|
89
89
|
{ "value": "css", "label": "CSS" },
|
|
90
90
|
{
|
|
91
91
|
"value": "scss",
|
|
92
|
-
"label": "SASS(.scss) [
|
|
92
|
+
"label": "SASS(.scss) [ https://sass-lang.com ]"
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
95
|
"value": "less",
|
|
96
|
-
"label": "LESS [
|
|
96
|
+
"label": "LESS [ https://lesscss.org ]"
|
|
97
97
|
},
|
|
98
98
|
{ "value": "none", "label": "None" }
|
|
99
99
|
]
|