nx 20.6.0-canary.20250308-a95a60c → 20.6.0-canary.20250312-e4f5224
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 +11 -11
- package/src/adapter/compat.d.ts +1 -1
- package/src/adapter/compat.js +1 -0
- package/src/config/nx-json.d.ts +4 -0
- package/src/core/graph/main.js +1 -1
- package/src/native/index.d.ts +5 -4
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/tasks-runner/cache.d.ts +12 -1
- package/src/tasks-runner/cache.js +43 -4
- package/src/tasks-runner/task-orchestrator.js +6 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.6.0-canary.
|
3
|
+
"version": "20.6.0-canary.20250312-e4f5224",
|
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": {
|
@@ -82,16 +82,16 @@
|
|
82
82
|
}
|
83
83
|
},
|
84
84
|
"optionalDependencies": {
|
85
|
-
"@nx/nx-darwin-arm64": "20.6.0-canary.
|
86
|
-
"@nx/nx-darwin-x64": "20.6.0-canary.
|
87
|
-
"@nx/nx-freebsd-x64": "20.6.0-canary.
|
88
|
-
"@nx/nx-linux-arm-gnueabihf": "20.6.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-gnu": "20.6.0-canary.
|
90
|
-
"@nx/nx-linux-arm64-musl": "20.6.0-canary.
|
91
|
-
"@nx/nx-linux-x64-gnu": "20.6.0-canary.
|
92
|
-
"@nx/nx-linux-x64-musl": "20.6.0-canary.
|
93
|
-
"@nx/nx-win32-arm64-msvc": "20.6.0-canary.
|
94
|
-
"@nx/nx-win32-x64-msvc": "20.6.0-canary.
|
85
|
+
"@nx/nx-darwin-arm64": "20.6.0-canary.20250312-e4f5224",
|
86
|
+
"@nx/nx-darwin-x64": "20.6.0-canary.20250312-e4f5224",
|
87
|
+
"@nx/nx-freebsd-x64": "20.6.0-canary.20250312-e4f5224",
|
88
|
+
"@nx/nx-linux-arm-gnueabihf": "20.6.0-canary.20250312-e4f5224",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "20.6.0-canary.20250312-e4f5224",
|
90
|
+
"@nx/nx-linux-arm64-musl": "20.6.0-canary.20250312-e4f5224",
|
91
|
+
"@nx/nx-linux-x64-gnu": "20.6.0-canary.20250312-e4f5224",
|
92
|
+
"@nx/nx-linux-x64-musl": "20.6.0-canary.20250312-e4f5224",
|
93
|
+
"@nx/nx-win32-arm64-msvc": "20.6.0-canary.20250312-e4f5224",
|
94
|
+
"@nx/nx-win32-x64-msvc": "20.6.0-canary.20250312-e4f5224"
|
95
95
|
},
|
96
96
|
"nx-migrations": {
|
97
97
|
"migrations": "./migrations.json",
|
package/src/adapter/compat.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
export declare const allowedProjectExtensions: readonly ["tags", "implicitDependencies", "configFilePath", "$schema", "generators", "namedInputs", "name", "files", "root", "sourceRoot", "projectType", "release", "includedScripts", "metadata"];
|
2
|
-
export declare const allowedWorkspaceExtensions: readonly ["$schema", "implicitDependencies", "affected", "defaultBase", "tasksRunnerOptions", "workspaceLayout", "plugins", "targetDefaults", "files", "generators", "namedInputs", "extends", "cli", "pluginsConfig", "defaultProject", "installation", "release", "nxCloudAccessToken", "nxCloudId", "nxCloudUrl", "nxCloudEncryptionKey", "parallel", "cacheDirectory", "useDaemonProcess", "useInferencePlugins", "neverConnectToCloud", "sync", "useLegacyCache"];
|
2
|
+
export declare const allowedWorkspaceExtensions: readonly ["$schema", "implicitDependencies", "affected", "defaultBase", "tasksRunnerOptions", "workspaceLayout", "plugins", "targetDefaults", "files", "generators", "namedInputs", "extends", "cli", "pluginsConfig", "defaultProject", "installation", "release", "nxCloudAccessToken", "nxCloudId", "nxCloudUrl", "nxCloudEncryptionKey", "parallel", "cacheDirectory", "useDaemonProcess", "useInferencePlugins", "neverConnectToCloud", "sync", "useLegacyCache", "maxCacheSize"];
|
package/src/adapter/compat.js
CHANGED
package/src/config/nx-json.d.ts
CHANGED
@@ -490,6 +490,10 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
|
|
490
490
|
* Use the legacy file system cache instead of the db cache
|
491
491
|
*/
|
492
492
|
useLegacyCache?: boolean;
|
493
|
+
/**
|
494
|
+
* Sets the maximum size of the local cache. Accepts a number followed by a unit (e.g. 100MB). Accepted units are B, KB, MB, and GB.
|
495
|
+
*/
|
496
|
+
maxCacheSize?: string;
|
493
497
|
}
|
494
498
|
export type PluginConfiguration = string | ExpandedPluginConfiguration;
|
495
499
|
export type ExpandedPluginConfiguration<T = unknown> = {
|