nx 18.2.0-beta.0 → 18.2.0-beta.1

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2017-2023 Narwhal Technologies Inc.
3
+ Copyright (c) 2017-2024 Narwhal Technologies Inc.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "18.2.0-beta.0",
3
+ "version": "18.2.0-beta.1",
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": {
@@ -66,7 +66,7 @@
66
66
  "yargs-parser": "21.1.1",
67
67
  "node-machine-id": "1.1.12",
68
68
  "ora": "5.3.0",
69
- "@nrwl/tao": "18.2.0-beta.0"
69
+ "@nrwl/tao": "18.2.0-beta.1"
70
70
  },
71
71
  "peerDependencies": {
72
72
  "@swc-node/register": "^1.8.0",
@@ -81,16 +81,16 @@
81
81
  }
82
82
  },
83
83
  "optionalDependencies": {
84
- "@nx/nx-darwin-x64": "18.2.0-beta.0",
85
- "@nx/nx-darwin-arm64": "18.2.0-beta.0",
86
- "@nx/nx-linux-x64-gnu": "18.2.0-beta.0",
87
- "@nx/nx-linux-x64-musl": "18.2.0-beta.0",
88
- "@nx/nx-win32-x64-msvc": "18.2.0-beta.0",
89
- "@nx/nx-linux-arm64-gnu": "18.2.0-beta.0",
90
- "@nx/nx-linux-arm64-musl": "18.2.0-beta.0",
91
- "@nx/nx-linux-arm-gnueabihf": "18.2.0-beta.0",
92
- "@nx/nx-win32-arm64-msvc": "18.2.0-beta.0",
93
- "@nx/nx-freebsd-x64": "18.2.0-beta.0"
84
+ "@nx/nx-darwin-x64": "18.2.0-beta.1",
85
+ "@nx/nx-darwin-arm64": "18.2.0-beta.1",
86
+ "@nx/nx-linux-x64-gnu": "18.2.0-beta.1",
87
+ "@nx/nx-linux-x64-musl": "18.2.0-beta.1",
88
+ "@nx/nx-win32-x64-msvc": "18.2.0-beta.1",
89
+ "@nx/nx-linux-arm64-gnu": "18.2.0-beta.1",
90
+ "@nx/nx-linux-arm64-musl": "18.2.0-beta.1",
91
+ "@nx/nx-linux-arm-gnueabihf": "18.2.0-beta.1",
92
+ "@nx/nx-win32-arm64-msvc": "18.2.0-beta.1",
93
+ "@nx/nx-freebsd-x64": "18.2.0-beta.1"
94
94
  },
95
95
  "nx-migrations": {
96
96
  "migrations": "./migrations.json",
@@ -270,7 +270,9 @@
270
270
  {
271
271
  "type": "array",
272
272
  "description": "The projects that the targets belong to.",
273
- "items": { "type": "string" }
273
+ "items": {
274
+ "type": "string"
275
+ }
274
276
  }
275
277
  ]
276
278
  },
@@ -294,8 +296,12 @@
294
296
  "required": ["input"],
295
297
  "not": {
296
298
  "anyOf": [
297
- { "required": ["projects"] },
298
- { "required": ["dependencies"] }
299
+ {
300
+ "required": ["projects"]
301
+ },
302
+ {
303
+ "required": ["dependencies"]
304
+ }
299
305
  ]
300
306
  }
301
307
  }
@@ -327,7 +333,9 @@
327
333
  "properties": {
328
334
  "externalDependencies": {
329
335
  "type": "array",
330
- "items": { "type": "string" },
336
+ "items": {
337
+ "type": "string"
338
+ },
331
339
  "description": "The list of external dependencies that our target depends on for `nx:run-commands` and community plugins."
332
340
  }
333
341
  },
@@ -495,8 +503,12 @@
495
503
  "required": ["target"],
496
504
  "not": {
497
505
  "anyOf": [
498
- { "required": ["projects"] },
499
- { "required": ["dependencies"] }
506
+ {
507
+ "required": ["projects"]
508
+ },
509
+ {
510
+ "required": ["dependencies"]
511
+ }
500
512
  ]
501
513
  }
502
514
  }
@@ -529,6 +541,20 @@
529
541
  "options": {
530
542
  "type": "object",
531
543
  "description": "The options passed to the plugin when creating nodes and dependencies"
544
+ },
545
+ "include": {
546
+ "type": "array",
547
+ "description": "File patterns which are included by the plugin",
548
+ "items": {
549
+ "type": "string"
550
+ }
551
+ },
552
+ "exclude": {
553
+ "type": "array",
554
+ "description": "File patterns which are excluded by the plugin",
555
+ "items": {
556
+ "type": "string"
557
+ }
532
558
  }
533
559
  }
534
560
  }
@@ -397,6 +397,8 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
397
397
  export type PluginConfiguration = string | {
398
398
  plugin: string;
399
399
  options?: unknown;
400
+ include?: string[];
401
+ exclude?: string[];
400
402
  };
401
403
  export declare function readNxJson(root?: string): NxJsonConfiguration;
402
404
  export declare function hasNxJson(root: string): boolean;
@@ -34,7 +34,7 @@ MIT
34
34
  MIT
35
35
  (The MIT License)
36
36
 
37
- Copyright (c) 2017-2023 Narwhal Technologies Inc.
37
+ Copyright (c) 2017-2024 Narwhal Technologies Inc.
38
38
 
39
39
  Permission is hereby granted, free of charge, to any person obtaining
40
40
  a copy of this software and associated documentation files (the
@@ -214,7 +214,7 @@ SOFTWARE.
214
214
 
215
215
  core-js
216
216
  MIT
217
- Copyright (c) 2014-2022 Denis Pushkarev
217
+ Copyright (c) 2014-2024 Denis Pushkarev
218
218
 
219
219
  Permission is hereby granted, free of charge, to any person obtaining a copy
220
220
  of this software and associated documentation files (the "Software"), to deal
@@ -704,57 +704,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
704
704
  SOFTWARE.
705
705
 
706
706
 
707
- regenerator-runtime
708
- MIT
709
- MIT License
710
-
711
- Copyright (c) 2014-present, Facebook, Inc.
712
-
713
- Permission is hereby granted, free of charge, to any person obtaining a copy
714
- of this software and associated documentation files (the "Software"), to deal
715
- in the Software without restriction, including without limitation the rights
716
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
717
- copies of the Software, and to permit persons to whom the Software is
718
- furnished to do so, subject to the following conditions:
719
-
720
- The above copyright notice and this permission notice shall be included in all
721
- copies or substantial portions of the Software.
722
-
723
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
724
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
725
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
726
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
727
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
728
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
729
- SOFTWARE.
730
-
731
-
732
- tabbable
733
- MIT
734
- The MIT License (MIT)
735
-
736
- Copyright (c) 2015 David Clark
737
-
738
- Permission is hereby granted, free of charge, to any person obtaining a copy
739
- of this software and associated documentation files (the "Software"), to deal
740
- in the Software without restriction, including without limitation the rights
741
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
742
- copies of the Software, and to permit persons to whom the Software is
743
- furnished to do so, subject to the following conditions:
744
-
745
- The above copyright notice and this permission notice shall be included in all
746
- copies or substantial portions of the Software.
747
-
748
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
749
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
750
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
751
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
752
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
753
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
754
- SOFTWARE.
755
-
756
-
757
-
758
707
  toggle-selection
759
708
  MIT
760
709