@nstudio/web 15.0.4-rc.0 → 15.0.4-rc.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/README.md +4 -2
- package/package.json +2 -2
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
@@ -42,10 +42,12 @@ You are now ready to create apps:
|
|
42
42
|
nx g app
|
43
43
|
```
|
44
44
|
|
45
|
-
**NOTE:** If you encounter any issue, you can try creating an Nx workspace with version specified
|
45
|
+
**NOTE:** If you encounter any issue, you can try creating an Nx workspace with a version specified.
|
46
|
+
|
47
|
+
We have tested with the following, for example:
|
46
48
|
|
47
49
|
```
|
48
|
-
npx create-nx-workspace@
|
50
|
+
npx create-nx-workspace@15.9.2
|
49
51
|
```
|
50
52
|
|
51
53
|
## App generation examples
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nstudio/web",
|
3
|
-
"version": "15.0.4-rc.
|
3
|
+
"version": "15.0.4-rc.1",
|
4
4
|
"description": "Web Plugin for xplat",
|
5
5
|
"homepage": "https://nstudio.io/xplat",
|
6
6
|
"repository": {
|
@@ -33,6 +33,6 @@
|
|
33
33
|
"@nrwl/web": "^15.0.0"
|
34
34
|
},
|
35
35
|
"peerDependencies": {
|
36
|
-
"@nstudio/xplat": "15.0.4-rc.
|
36
|
+
"@nstudio/xplat": "15.0.4-rc.1"
|
37
37
|
}
|
38
38
|
}
|
package/src/utils/versions.js
CHANGED