create-unisphere-project 3.0.0 → 3.1.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/dist/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # create-unisphere-project
2
2
 
3
+ ## 3.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - sync templates with @unisphere/nx@4.5.2
8
+ - pin @unisphere/nx to 4.5.2
9
+
10
+ ## 3.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - sync templates with @unisphere/nx@4.4.0 migrations
15
+ - add .nx/polygraph and .nx/self-healing to .gitignore
16
+ - add .nx/self-healing to .prettierignore
17
+ - convert jest.config.ts from ESM to CJS syntax
18
+ - add @nx/vitest plugin to nx.json
19
+ - add @nx/vitest package to devDependencies
20
+ - bump @nx/* packages from 22.1.3 to 22.7.1
21
+ - bump @swc/* packages to latest versions
22
+ - pin @unisphere/nx to 4.4.0
23
+ - pin @unisphere/cli to 5.0.1
24
+
3
25
  ## 3.0.0
4
26
 
5
27
  ### 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": {