create-unisphere-project 3.0.0 → 3.1.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/dist/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # create-unisphere-project
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - sync templates with @unisphere/nx@4.4.0 migrations
8
+ - add .nx/polygraph and .nx/self-healing to .gitignore
9
+ - add .nx/self-healing to .prettierignore
10
+ - convert jest.config.ts from ESM to CJS syntax
11
+ - add @nx/vitest plugin to nx.json
12
+ - add @nx/vitest package to devDependencies
13
+ - bump @nx/* packages from 22.1.3 to 22.7.1
14
+ - bump @swc/* packages to latest versions
15
+ - pin @unisphere/nx to 4.4.0
16
+ - pin @unisphere/cli to 5.0.1
17
+
3
18
  ## 3.0.0
4
19
 
5
20
  ### Major Changes
@@ -2,4 +2,5 @@
2
2
  /dist
3
3
  /coverage
4
4
  /.nx/cache
5
- /.nx/workspace-data
5
+ /.nx/workspace-data
6
+ .nx/self-healing
@@ -54,3 +54,6 @@ user-scripts/
54
54
  # Claude Code configuration
55
55
  .claude/*
56
56
  !.claude/skills
57
+
58
+ .nx/polygraph
59
+ .nx/self-healing
@@ -1,5 +1,5 @@
1
- import { getJestProjectsAsync } from '@nx/jest';
1
+ const { getJestProjectsAsync } = require('@nx/jest');
2
2
 
3
- export default async () => ({
3
+ module.exports = async () => ({
4
4
  projects: await getJestProjectsAsync(),
5
5
  });
@@ -34,7 +34,6 @@
34
34
  "plugin": "@nx/vite/plugin",
35
35
  "options": {
36
36
  "buildTargetName": "build",
37
- "testTargetName": "test",
38
37
  "serveTargetName": "serve",
39
38
  "previewTargetName": "preview",
40
39
  "serveStaticTargetName": "serve-static"
@@ -53,6 +52,12 @@
53
52
  "options": {
54
53
  "targetName": "test"
55
54
  }
55
+ },
56
+ {
57
+ "plugin": "@nx/vitest",
58
+ "options": {
59
+ "testTargetName": "test"
60
+ }
56
61
  }
57
62
  ],
58
63
  "generators": {