@nstudio/web-angular 16.5.8 → 16.5.9
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/README.md +1 -5
- package/package.json +4 -4
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
@@ -64,11 +64,7 @@ You are now ready to create apps:
|
|
64
64
|
npx nx g @nstudio/xplat:app
|
65
65
|
```
|
66
66
|
|
67
|
-
**
|
68
|
-
|
69
|
-
```
|
70
|
-
npx create-nx-workspace@16.5.0
|
71
|
-
```
|
67
|
+
**Potential schematics error:** If you encounter a `SchematicNameCollisionException` issue, you can see this gist to apply a patch: https://gist.github.com/NathanWalker/a8554c1e0bba700affeb0c4672d26b0e
|
72
68
|
|
73
69
|
## App generation examples
|
74
70
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nstudio/web-angular",
|
3
|
-
"version": "16.5.
|
3
|
+
"version": "16.5.9",
|
4
4
|
"description": "Web Angular Plugin for xplat",
|
5
5
|
"homepage": "https://nstudio.io/xplat",
|
6
6
|
"repository": {
|
@@ -30,10 +30,10 @@
|
|
30
30
|
"migrations": "./migrations.json"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@nstudio/angular": "16.5.
|
34
|
-
"@nstudio/web": "16.5.
|
33
|
+
"@nstudio/angular": "16.5.9",
|
34
|
+
"@nstudio/web": "16.5.9"
|
35
35
|
},
|
36
36
|
"peerDependencies": {
|
37
|
-
"@nstudio/xplat": "16.5.
|
37
|
+
"@nstudio/xplat": "16.5.9"
|
38
38
|
}
|
39
39
|
}
|
package/src/utils/versions.js
CHANGED