@nx/vite 22.6.0-rc.2 → 22.6.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/vite",
|
|
3
|
-
"version": "22.6.
|
|
3
|
+
"version": "22.6.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for building and testing applications using Vite",
|
|
6
6
|
"repository": {
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"migrations": "./migrations.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@nx/devkit": "22.6.
|
|
33
|
+
"@nx/devkit": "22.6.1",
|
|
34
34
|
"@phenomnomnominal/tsquery": "~6.1.4",
|
|
35
35
|
"enquirer": "~2.3.6",
|
|
36
|
-
"@nx/js": "22.6.
|
|
37
|
-
"@nx/vitest": "22.6.
|
|
36
|
+
"@nx/js": "22.6.1",
|
|
37
|
+
"@nx/vitest": "22.6.1",
|
|
38
38
|
"picomatch": "4.0.2",
|
|
39
39
|
"tsconfig-paths": "^4.1.2",
|
|
40
40
|
"semver": "^7.6.3",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"ajv": "^8.0.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"nx": "22.6.
|
|
45
|
+
"nx": "22.6.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
@@ -11,7 +11,7 @@ function nxViteBuildCoordinationPlugin(options) {
|
|
|
11
11
|
async function buildChangedProjects() {
|
|
12
12
|
await new Promise((res) => {
|
|
13
13
|
activeBuildProcess = (0, child_process_1.exec)(options.buildCommand, {
|
|
14
|
-
windowsHide:
|
|
14
|
+
windowsHide: true,
|
|
15
15
|
});
|
|
16
16
|
activeBuildProcess.stdout.pipe(process.stdout);
|
|
17
17
|
activeBuildProcess.stderr.pipe(process.stderr);
|
|
@@ -29,7 +29,7 @@ async function validateTypes(opts) {
|
|
|
29
29
|
const cp = (0, node_child_process_1.execSync)(`${pm.exec} vue-tsc --noEmit -p ${opts.tsconfig} --composite false`, {
|
|
30
30
|
cwd: opts.workspaceRoot,
|
|
31
31
|
stdio: 'inherit',
|
|
32
|
-
windowsHide:
|
|
32
|
+
windowsHide: true,
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
}
|