@nx/nuxt 23.0.0 → 23.1.0-beta.0
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/README.md
CHANGED
|
@@ -7,13 +7,12 @@
|
|
|
7
7
|
|
|
8
8
|
<div style="text-align: center;">
|
|
9
9
|
|
|
10
|
-
[](https://circleci.com/gh/nrwl/nx)
|
|
11
10
|
[]()
|
|
12
11
|
[](https://www.npmjs.com/package/nx)
|
|
13
12
|
[]()
|
|
14
13
|
[](http://commitizen.github.io/cz-cli/)
|
|
15
|
-
[](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
|
16
14
|
[](https://go.nx.dev/community)
|
|
15
|
+
[](https://nx.dev/docs/features/ci-features/sandboxing)
|
|
17
16
|
|
|
18
17
|
</div>
|
|
19
18
|
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.createTsConfig = createTsConfig;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
4
|
const devkit_1 = require("@nx/devkit");
|
|
6
|
-
const
|
|
5
|
+
const internal_1 = require("@nx/js/internal");
|
|
7
6
|
function createTsConfig(host, options, relativePathToRootTsConfig) {
|
|
8
7
|
createAppTsConfig(host, options);
|
|
9
8
|
const json = {
|
|
@@ -24,7 +23,7 @@ function createTsConfig(host, options, relativePathToRootTsConfig) {
|
|
|
24
23
|
if (options.rootProject) {
|
|
25
24
|
json.compileOnSave = false;
|
|
26
25
|
json.compilerOptions = {
|
|
27
|
-
...
|
|
26
|
+
...(0, internal_1.getTsConfigBaseOptions)(host),
|
|
28
27
|
...json.compilerOptions,
|
|
29
28
|
};
|
|
30
29
|
json.exclude = ['node_modules', 'tmp'];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function loadNuxtKitDynamicImport(): Promise<typeof import(
|
|
1
|
+
export declare function loadNuxtKitDynamicImport(): Promise<typeof import('@nuxt/kit')>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/nuxt",
|
|
3
|
-
"version": "23.0.0",
|
|
3
|
+
"version": "23.1.0-beta.0",
|
|
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": {
|
|
@@ -60,15 +60,15 @@
|
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"tslib": "^2.3.0",
|
|
62
62
|
"semver": "^7.6.3",
|
|
63
|
-
"@nx/
|
|
64
|
-
"@nx/
|
|
65
|
-
"@nx/vite": "23.0.0",
|
|
66
|
-
"@nx/
|
|
67
|
-
"@nx/
|
|
68
|
-
"@nx/
|
|
63
|
+
"@nx/devkit": "23.1.0-beta.0",
|
|
64
|
+
"@nx/eslint": "23.1.0-beta.0",
|
|
65
|
+
"@nx/vite": "23.1.0-beta.0",
|
|
66
|
+
"@nx/vue": "23.1.0-beta.0",
|
|
67
|
+
"@nx/js": "23.1.0-beta.0",
|
|
68
|
+
"@nx/vitest": "23.1.0-beta.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"nx": "23.0.0"
|
|
71
|
+
"nx": "23.1.0-beta.0"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"nuxt": ">=3.0.0 <5.0.0",
|