@nx/vite 23.0.0-beta.22 → 23.0.0-beta.23
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CreateDependencies,
|
|
1
|
+
import { CreateDependencies, CreateNodes } from '@nx/devkit';
|
|
2
2
|
export interface VitePluginOptions {
|
|
3
3
|
buildTargetName?: string;
|
|
4
4
|
/**
|
|
@@ -23,5 +23,5 @@ export interface VitePluginOptions {
|
|
|
23
23
|
* @deprecated The 'createDependencies' function is now a no-op. This functionality is included in 'createNodesV2'.
|
|
24
24
|
*/
|
|
25
25
|
export declare const createDependencies: CreateDependencies;
|
|
26
|
-
export declare const createNodes:
|
|
27
|
-
export declare const createNodesV2:
|
|
26
|
+
export declare const createNodes: CreateNodes<VitePluginOptions>;
|
|
27
|
+
export declare const createNodesV2: CreateNodes<VitePluginOptions>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/vite",
|
|
3
|
-
"version": "23.0.0-beta.
|
|
3
|
+
"version": "23.0.0-beta.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"files": [
|
|
@@ -101,13 +101,13 @@
|
|
|
101
101
|
"semver": "^7.6.3",
|
|
102
102
|
"tslib": "^2.3.0",
|
|
103
103
|
"ajv": "^8.0.0",
|
|
104
|
-
"@nx/devkit": "23.0.0-beta.
|
|
105
|
-
"@nx/js": "23.0.0-beta.
|
|
106
|
-
"@nx/vitest": "23.0.0-beta.
|
|
104
|
+
"@nx/devkit": "23.0.0-beta.23",
|
|
105
|
+
"@nx/js": "23.0.0-beta.23",
|
|
106
|
+
"@nx/vitest": "23.0.0-beta.23"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@nx/eslint": "23.0.0-beta.
|
|
110
|
-
"nx": "23.0.0-beta.
|
|
109
|
+
"@nx/eslint": "23.0.0-beta.23",
|
|
110
|
+
"nx": "23.0.0-beta.23"
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
113
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|