nx 19.7.0-canary.20240827-61ecd4b → 19.7.0-canary.20240828-13170da

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": "nx",
3
- "version": "19.7.0-canary.20240827-61ecd4b",
3
+ "version": "19.7.0-canary.20240828-13170da",
4
4
  "private": false,
5
5
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
6
6
  "repository": {
@@ -56,7 +56,7 @@
56
56
  "ignore": "^5.0.4",
57
57
  "jest-diff": "^29.4.1",
58
58
  "jsonc-parser": "3.2.0",
59
- "lines-and-columns": "~2.0.3",
59
+ "lines-and-columns": "2.0.3",
60
60
  "minimatch": "9.0.3",
61
61
  "npm-run-path": "^4.0.1",
62
62
  "open": "^8.4.0",
@@ -71,7 +71,7 @@
71
71
  "yargs-parser": "21.1.1",
72
72
  "node-machine-id": "1.1.12",
73
73
  "ora": "5.3.0",
74
- "@nrwl/tao": "19.7.0-canary.20240827-61ecd4b"
74
+ "@nrwl/tao": "19.7.0-canary.20240828-13170da"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "@swc-node/register": "^1.8.0",
@@ -86,16 +86,16 @@
86
86
  }
87
87
  },
88
88
  "optionalDependencies": {
89
- "@nx/nx-darwin-x64": "19.7.0-canary.20240827-61ecd4b",
90
- "@nx/nx-darwin-arm64": "19.7.0-canary.20240827-61ecd4b",
91
- "@nx/nx-linux-x64-gnu": "19.7.0-canary.20240827-61ecd4b",
92
- "@nx/nx-linux-x64-musl": "19.7.0-canary.20240827-61ecd4b",
93
- "@nx/nx-win32-x64-msvc": "19.7.0-canary.20240827-61ecd4b",
94
- "@nx/nx-linux-arm64-gnu": "19.7.0-canary.20240827-61ecd4b",
95
- "@nx/nx-linux-arm64-musl": "19.7.0-canary.20240827-61ecd4b",
96
- "@nx/nx-linux-arm-gnueabihf": "19.7.0-canary.20240827-61ecd4b",
97
- "@nx/nx-win32-arm64-msvc": "19.7.0-canary.20240827-61ecd4b",
98
- "@nx/nx-freebsd-x64": "19.7.0-canary.20240827-61ecd4b"
89
+ "@nx/nx-darwin-x64": "19.7.0-canary.20240828-13170da",
90
+ "@nx/nx-darwin-arm64": "19.7.0-canary.20240828-13170da",
91
+ "@nx/nx-linux-x64-gnu": "19.7.0-canary.20240828-13170da",
92
+ "@nx/nx-linux-x64-musl": "19.7.0-canary.20240828-13170da",
93
+ "@nx/nx-win32-x64-msvc": "19.7.0-canary.20240828-13170da",
94
+ "@nx/nx-linux-arm64-gnu": "19.7.0-canary.20240828-13170da",
95
+ "@nx/nx-linux-arm64-musl": "19.7.0-canary.20240828-13170da",
96
+ "@nx/nx-linux-arm-gnueabihf": "19.7.0-canary.20240828-13170da",
97
+ "@nx/nx-win32-arm64-msvc": "19.7.0-canary.20240828-13170da",
98
+ "@nx/nx-freebsd-x64": "19.7.0-canary.20240828-13170da"
99
99
  },
100
100
  "nx-migrations": {
101
101
  "migrations": "./migrations.json",
@@ -10,19 +10,21 @@ export declare class ReleaseClient {
10
10
  release: (args: import("./command-object").ReleaseOptions) => Promise<import("./version").NxReleaseVersionResult | number>;
11
11
  constructor(overrideReleaseConfig: NxReleaseConfiguration);
12
12
  }
13
+ declare const defaultClient: ReleaseClient;
13
14
  /**
14
15
  * @public
15
16
  */
16
- export declare const releaseChangelog: any;
17
+ export declare const releaseChangelog: typeof defaultClient.releaseChangelog;
17
18
  /**
18
19
  * @public
19
20
  */
20
- export declare const releasePublish: any;
21
+ export declare const releasePublish: typeof defaultClient.releasePublish;
21
22
  /**
22
23
  * @public
23
24
  */
24
- export declare const releaseVersion: any;
25
+ export declare const releaseVersion: typeof defaultClient.releaseVersion;
25
26
  /**
26
27
  * @public
27
28
  */
28
- export declare const release: any;
29
+ export declare const release: typeof defaultClient.release;
30
+ export {};