@nstudio/xplat 16.5.6 → 16.5.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nstudio/xplat",
3
- "version": "16.5.6",
3
+ "version": "16.5.7",
4
4
  "description": "Cross-platform (xplat) tools for Nx workspaces.",
5
5
  "homepage": "https://nstudio.io/xplat",
6
6
  "repository": {
@@ -41,11 +41,10 @@
41
41
  "postinstall": "node src/utils/postinstall.js"
42
42
  },
43
43
  "dependencies": {
44
- "@angular-devkit/schematics": "file:angular-devkit-schematics-16.1.3-no-throw.0.tgz",
45
44
  "@nx/devkit": "^16.0.0",
46
45
  "@nx/js": "^16.0.0",
47
- "@nstudio/focus": "16.5.6",
48
- "@nstudio/xplat-utils": "16.5.6"
46
+ "@nstudio/focus": "16.5.7",
47
+ "@nstudio/xplat-utils": "16.5.7"
49
48
  },
50
49
  "author": "Nathan Walker",
51
50
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.nxVersion = exports.xplatVersion = void 0;
4
- exports.xplatVersion = '16.5.6';
4
+ exports.xplatVersion = '16.5.7';
5
5
  exports.nxVersion = '^16.0.0';
@@ -467,7 +467,12 @@ var XplatHelpers;
467
467
  libOptions.skipTsConfig = true;
468
468
  }
469
469
  // console.log(`CALLING externalSchematic('@nx/workspace', 'lib') for:`, `libs/${directory ? directory + '/' : ''}${libName}`)
470
- return (0, schematics_1.chain)([(0, schematics_1.externalSchematic)('@nx/js', 'library', libOptions)]);
470
+ try {
471
+ return (0, schematics_1.chain)([(0, schematics_1.externalSchematic)('@nx/js', 'library', libOptions)]);
472
+ }
473
+ catch (err) {
474
+ return (0, schematics_1.noop)();
475
+ }
471
476
  };
472
477
  }
473
478
  XplatHelpers.generateLib = generateLib;