@nx/nuxt 22.6.0-beta.12 → 22.6.0-beta.14
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": "22.6.0-beta.
|
|
3
|
+
"version": "22.6.0-beta.14",
|
|
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": {
|
|
@@ -44,16 +44,16 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"tslib": "^2.3.0",
|
|
46
46
|
"@nuxt/kit": "^3.10.0 || ^4.0.0",
|
|
47
|
-
"@nx/devkit": "22.6.0-beta.
|
|
48
|
-
"@nx/js": "22.6.0-beta.
|
|
49
|
-
"@nx/eslint": "22.6.0-beta.
|
|
50
|
-
"@nx/vue": "22.6.0-beta.
|
|
51
|
-
"@nx/vite": "22.6.0-beta.
|
|
52
|
-
"@nx/vitest": "22.6.0-beta.
|
|
47
|
+
"@nx/devkit": "22.6.0-beta.14",
|
|
48
|
+
"@nx/js": "22.6.0-beta.14",
|
|
49
|
+
"@nx/eslint": "22.6.0-beta.14",
|
|
50
|
+
"@nx/vue": "22.6.0-beta.14",
|
|
51
|
+
"@nx/vite": "22.6.0-beta.14",
|
|
52
|
+
"@nx/vitest": "22.6.0-beta.14",
|
|
53
53
|
"semver": "^7.5.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"nx": "22.6.0-beta.
|
|
56
|
+
"nx": "22.6.0-beta.14"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@nuxt/schema": "^3.10.0 || ^4.0.0"
|
package/src/utils/add-linting.js
CHANGED
|
@@ -80,10 +80,12 @@ module.exports = createConfigForNuxt({
|
|
|
80
80
|
.append(
|
|
81
81
|
{
|
|
82
82
|
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx', '**/*.vue'],
|
|
83
|
-
rules: {
|
|
83
|
+
rules: {
|
|
84
|
+
'vue/multi-word-component-names': 'off',
|
|
85
|
+
},
|
|
84
86
|
},
|
|
85
87
|
{
|
|
86
|
-
ignores: ['.nuxt/**', '.output/**', 'node_modules'],
|
|
88
|
+
ignores: ['.nuxt/**', '.output/**', 'node_modules', '**/*.d.ts', '**/*.vue.js'],
|
|
87
89
|
}
|
|
88
90
|
);
|
|
89
91
|
`;
|
|
@@ -102,10 +104,12 @@ export default createConfigForNuxt({
|
|
|
102
104
|
.append(
|
|
103
105
|
{
|
|
104
106
|
files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx', '**/*.vue'],
|
|
105
|
-
rules: {
|
|
107
|
+
rules: {
|
|
108
|
+
'vue/multi-word-component-names': 'off',
|
|
109
|
+
},
|
|
106
110
|
},
|
|
107
111
|
{
|
|
108
|
-
ignores: ['.nuxt/**', '.output/**', 'node_modules'],
|
|
112
|
+
ignores: ['.nuxt/**', '.output/**', 'node_modules', '**/*.d.ts', '**/*.vue.js'],
|
|
109
113
|
}
|
|
110
114
|
);
|
|
111
115
|
`;
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
2
|
export declare const nuxtV4Version = "^4.0.0";
|
|
3
|
-
export declare const nuxtV3Version = "^3.
|
|
3
|
+
export declare const nuxtV3Version = "^3.21.1";
|
|
4
4
|
export declare const nuxtVersion = "^4.0.0";
|
|
5
5
|
export declare const nuxtKitV4Version = "^4.0.0";
|
|
6
|
-
export declare const nuxtKitV3Version = "^3.
|
|
6
|
+
export declare const nuxtKitV3Version = "^3.21.1";
|
|
7
7
|
export declare const nuxtKitVersion = "^4.0.0";
|
|
8
8
|
export declare const h3Version = "^1.8.2";
|
|
9
9
|
export declare const nuxtDevtoolsV4Version = "^3.0.0";
|
|
10
|
-
export declare const nuxtDevtoolsV3Version = "^1.
|
|
10
|
+
export declare const nuxtDevtoolsV3Version = "^3.1.1";
|
|
11
11
|
export declare const nuxtDevtoolsVersion = "^3.0.0";
|
|
12
12
|
export declare const nuxtUiTemplatesVersion = "^1.3.1";
|
|
13
13
|
export declare const nuxtEslintConfigVersion = "^1.10.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -4,16 +4,16 @@ exports.nuxtEslintConfigLegacyVersion = exports.nuxtEslintConfigVersion = export
|
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
5
|
// Nuxt versions
|
|
6
6
|
exports.nuxtV4Version = '^4.0.0';
|
|
7
|
-
exports.nuxtV3Version = '^3.
|
|
7
|
+
exports.nuxtV3Version = '^3.21.1';
|
|
8
8
|
exports.nuxtVersion = exports.nuxtV4Version; // Default to v4
|
|
9
9
|
// @nuxt/kit versions (aligned with Nuxt)
|
|
10
10
|
exports.nuxtKitV4Version = '^4.0.0';
|
|
11
|
-
exports.nuxtKitV3Version = '^3.
|
|
11
|
+
exports.nuxtKitV3Version = '^3.21.1';
|
|
12
12
|
exports.nuxtKitVersion = exports.nuxtKitV4Version;
|
|
13
13
|
// nuxt deps
|
|
14
14
|
exports.h3Version = '^1.8.2';
|
|
15
15
|
exports.nuxtDevtoolsV4Version = '^3.0.0';
|
|
16
|
-
exports.nuxtDevtoolsV3Version = '^1.
|
|
16
|
+
exports.nuxtDevtoolsV3Version = '^3.1.1';
|
|
17
17
|
exports.nuxtDevtoolsVersion = exports.nuxtDevtoolsV4Version;
|
|
18
18
|
exports.nuxtUiTemplatesVersion = '^1.3.1';
|
|
19
19
|
// linting deps - version-aware for flat config vs legacy
|