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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "20.6.0-canary.20250308-a95a60c",
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.20250308-a95a60c",
86
- "@nx/nx-darwin-x64": "20.6.0-canary.20250308-a95a60c",
87
- "@nx/nx-freebsd-x64": "20.6.0-canary.20250308-a95a60c",
88
- "@nx/nx-linux-arm-gnueabihf": "20.6.0-canary.20250308-a95a60c",
89
- "@nx/nx-linux-arm64-gnu": "20.6.0-canary.20250308-a95a60c",
90
- "@nx/nx-linux-arm64-musl": "20.6.0-canary.20250308-a95a60c",
91
- "@nx/nx-linux-x64-gnu": "20.6.0-canary.20250308-a95a60c",
92
- "@nx/nx-linux-x64-musl": "20.6.0-canary.20250308-a95a60c",
93
- "@nx/nx-win32-arm64-msvc": "20.6.0-canary.20250308-a95a60c",
94
- "@nx/nx-win32-x64-msvc": "20.6.0-canary.20250308-a95a60c"
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",
@@ -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"];
@@ -65,6 +65,7 @@ exports.allowedWorkspaceExtensions = [
65
65
  'neverConnectToCloud',
66
66
  'sync',
67
67
  'useLegacyCache',
68
+ 'maxCacheSize',
68
69
  ];
69
70
  if (!patched) {
70
71
  Module.prototype.require = function () {
@@ -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> = {