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 +15 -0
- package/dist/_templates/unisphere-project/.prettierignore +2 -1
- package/dist/_templates/unisphere-project/gitignore +3 -0
- package/dist/_templates/unisphere-project/jest.config.ts +2 -2
- package/dist/_templates/unisphere-project/nx.json +6 -1
- package/dist/_templates/unisphere-project/package-lock.json +1897 -3157
- package/dist/_templates/unisphere-project/package.json +18 -17
- package/dist/package.json +1 -1
- package/package.json +1 -1
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
|
|
@@ -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": {
|