@nstudio/xplat 14.0.1 → 15.0.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/README.md CHANGED
@@ -45,7 +45,7 @@ nx g app
45
45
  **NOTE:** If you encounter any issue, you can try creating an Nx workspace with version specified, for example:
46
46
 
47
47
  ```
48
- npx create-nx-workspace@13.9.5
48
+ npx create-nx-workspace@14.1.7
49
49
  ```
50
50
 
51
51
  ## App generation examples
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nstudio/xplat",
3
- "version": "14.0.1",
3
+ "version": "15.0.0",
4
4
  "description": "Cross-platform (xplat) tools for Nx workspaces.",
5
5
  "homepage": "https://nstudio.io/xplat",
6
6
  "repository": {
@@ -41,8 +41,8 @@
41
41
  "postinstall": "node src/utils/postinstall.js"
42
42
  },
43
43
  "dependencies": {
44
- "@nstudio/focus": "14.0.1",
45
- "@nstudio/xplat-utils": "14.0.1"
44
+ "@nstudio/focus": "15.0.0",
45
+ "@nstudio/xplat-utils": "15.0.0"
46
46
  },
47
47
  "author": "Nathan Walker",
48
48
  "license": "MIT",
@@ -17,7 +17,11 @@ function createEmptyWorkspace(tree, framework) {
17
17
  devDependencies: {},
18
18
  xplat: xplatSettings,
19
19
  }));
20
- tree.create('/nx.json', JSON.stringify({ npmScope: 'testing', projects: {} }));
20
+ tree.create('/nx.json', JSON.stringify({
21
+ npmScope: 'testing',
22
+ projects: {},
23
+ $schema: './node_modules/nx/schemas/nx-schema.json',
24
+ }));
21
25
  tree.create('/tsconfig.base.json', JSON.stringify({ compilerOptions: { paths: {} } }));
22
26
  tree.create('/tslint.json', JSON.stringify({
23
27
  rules: {
@@ -1,2 +1,2 @@
1
1
  export declare const xplatVersion = "*";
2
- export declare const nxVersion = "^14.0.0";
2
+ export declare const nxVersion = "^15.0.0";
@@ -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 = '14.0.1';
5
- exports.nxVersion = '^14.0.0';
4
+ exports.xplatVersion = '15.0.0';
5
+ exports.nxVersion = '^15.0.0';