@nstudio/xplat 16.5.2 → 16.5.4
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/package.json +3 -3
- package/src/utils/versions.js +1 -1
- package/src/utils/xplat.js +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nstudio/xplat",
|
3
|
-
"version": "16.5.
|
3
|
+
"version": "16.5.4",
|
4
4
|
"description": "Cross-platform (xplat) tools for Nx workspaces.",
|
5
5
|
"homepage": "https://nstudio.io/xplat",
|
6
6
|
"repository": {
|
@@ -43,8 +43,8 @@
|
|
43
43
|
"dependencies": {
|
44
44
|
"@nx/devkit": "^16.0.0",
|
45
45
|
"@nx/js": "^16.0.0",
|
46
|
-
"@nstudio/focus": "16.5.
|
47
|
-
"@nstudio/xplat-utils": "16.5.
|
46
|
+
"@nstudio/focus": "16.5.4",
|
47
|
+
"@nstudio/xplat-utils": "16.5.4"
|
48
48
|
},
|
49
49
|
"author": "Nathan Walker",
|
50
50
|
"license": "MIT",
|
package/src/utils/versions.js
CHANGED
package/src/utils/xplat.js
CHANGED
@@ -248,7 +248,7 @@ var XplatHelpers;
|
|
248
248
|
let version;
|
249
249
|
// ensure inner schematic dependencies are installed
|
250
250
|
for (const name of exports.packageInnerDependencies[packageName]) {
|
251
|
-
if (name.indexOf('
|
251
|
+
if (name.indexOf('@nx/') > -1) {
|
252
252
|
// default to internally managed/supported nrwl version
|
253
253
|
version = versions_1.nxVersion;
|
254
254
|
// look for existing nrwl versions if user already has them installed and use those
|
@@ -337,7 +337,7 @@ var XplatHelpers;
|
|
337
337
|
let version;
|
338
338
|
// ensure inner schematic dependencies are installed
|
339
339
|
for (const name of exports.packageInnerDependencies[packageName]) {
|
340
|
-
if (name.indexOf('
|
340
|
+
if (name.indexOf('@nx/') > -1) {
|
341
341
|
// default to internally managed/supported nrwl version
|
342
342
|
version = versions_1.nxVersion;
|
343
343
|
// look for existing nrwl versions if user already has them installed and use those
|