@nx/vite 22.4.0-beta.0 → 22.4.0-canary.20251222-d959d70
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.4.0-
|
|
3
|
+
"version": "22.4.0-canary.20251222-d959d70",
|
|
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.4.0-
|
|
33
|
+
"@nx/devkit": "22.4.0-canary.20251222-d959d70",
|
|
34
34
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
35
35
|
"enquirer": "~2.3.6",
|
|
36
|
-
"@nx/js": "22.4.0-
|
|
37
|
-
"@nx/vitest": "22.4.0-
|
|
36
|
+
"@nx/js": "22.4.0-canary.20251222-d959d70",
|
|
37
|
+
"@nx/vitest": "22.4.0-canary.20251222-d959d70",
|
|
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.4.0-
|
|
45
|
+
"nx": "22.4.0-canary.20251222-d959d70"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0",
|
|
@@ -702,6 +702,14 @@ nx show project PROJECT_NAME --web
|
|
|
702
702
|
nx reset
|
|
703
703
|
```
|
|
704
704
|
|
|
705
|
+
## Guard Rails
|
|
706
|
+
|
|
707
|
+
DO NOT
|
|
708
|
+
|
|
709
|
+
- Force tests to pass by removing test logic and replacing it with `expect(true).toBe(true)`
|
|
710
|
+
- Remove assertions
|
|
711
|
+
- Add additional mocks that force tests to pass
|
|
712
|
+
|
|
705
713
|
---
|
|
706
714
|
|
|
707
715
|
## Notes for LLM Execution
|