nx 20.0.0-canary.20240928-f221a41 → 20.0.0-canary.20241002-1d10a19

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.0.0-canary.20240928-f221a41",
3
+ "version": "20.0.0-canary.20241002-1d10a19",
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": {
@@ -80,16 +80,16 @@
80
80
  }
81
81
  },
82
82
  "optionalDependencies": {
83
- "@nx/nx-darwin-x64": "20.0.0-canary.20240928-f221a41",
84
- "@nx/nx-darwin-arm64": "20.0.0-canary.20240928-f221a41",
85
- "@nx/nx-linux-x64-gnu": "20.0.0-canary.20240928-f221a41",
86
- "@nx/nx-linux-x64-musl": "20.0.0-canary.20240928-f221a41",
87
- "@nx/nx-win32-x64-msvc": "20.0.0-canary.20240928-f221a41",
88
- "@nx/nx-linux-arm64-gnu": "20.0.0-canary.20240928-f221a41",
89
- "@nx/nx-linux-arm64-musl": "20.0.0-canary.20240928-f221a41",
90
- "@nx/nx-linux-arm-gnueabihf": "20.0.0-canary.20240928-f221a41",
91
- "@nx/nx-win32-arm64-msvc": "20.0.0-canary.20240928-f221a41",
92
- "@nx/nx-freebsd-x64": "20.0.0-canary.20240928-f221a41"
83
+ "@nx/nx-darwin-x64": "20.0.0-canary.20241002-1d10a19",
84
+ "@nx/nx-darwin-arm64": "20.0.0-canary.20241002-1d10a19",
85
+ "@nx/nx-linux-x64-gnu": "20.0.0-canary.20241002-1d10a19",
86
+ "@nx/nx-linux-x64-musl": "20.0.0-canary.20241002-1d10a19",
87
+ "@nx/nx-win32-x64-msvc": "20.0.0-canary.20241002-1d10a19",
88
+ "@nx/nx-linux-arm64-gnu": "20.0.0-canary.20241002-1d10a19",
89
+ "@nx/nx-linux-arm64-musl": "20.0.0-canary.20241002-1d10a19",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.0.0-canary.20241002-1d10a19",
91
+ "@nx/nx-win32-arm64-msvc": "20.0.0-canary.20241002-1d10a19",
92
+ "@nx/nx-freebsd-x64": "20.0.0-canary.20241002-1d10a19"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
@@ -108,6 +108,20 @@ export interface ProjectMetadata {
108
108
  description?: string;
109
109
  technologies?: string[];
110
110
  targetGroups?: Record<string, string[]>;
111
+ owners?: {
112
+ [ownerId: string]: {
113
+ ownedFiles: {
114
+ files: ['*'] | string[];
115
+ fromConfig?: {
116
+ filePath: string;
117
+ location: {
118
+ startLine: number;
119
+ endLine: number;
120
+ };
121
+ };
122
+ }[];
123
+ };
124
+ };
111
125
  }
112
126
  export interface TargetMetadata {
113
127
  [k: string]: any;