nx 19.0.0-beta.4 → 19.0.0-beta.5

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/.eslintrc.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "extends": "../../.eslintrc",
3
3
  "rules": {},
4
- "ignorePatterns": ["!**/*"],
4
+ "ignorePatterns": ["!**/*", "**/__fixtures__/**/*"],
5
5
  "overrides": [
6
6
  {
7
7
  "files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "19.0.0-beta.4",
3
+ "version": "19.0.0-beta.5",
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": "19.0.0-beta.4"
69
+ "@nrwl/tao": "19.0.0-beta.5"
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": "19.0.0-beta.4",
85
- "@nx/nx-darwin-arm64": "19.0.0-beta.4",
86
- "@nx/nx-linux-x64-gnu": "19.0.0-beta.4",
87
- "@nx/nx-linux-x64-musl": "19.0.0-beta.4",
88
- "@nx/nx-win32-x64-msvc": "19.0.0-beta.4",
89
- "@nx/nx-linux-arm64-gnu": "19.0.0-beta.4",
90
- "@nx/nx-linux-arm64-musl": "19.0.0-beta.4",
91
- "@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.4",
92
- "@nx/nx-win32-arm64-msvc": "19.0.0-beta.4",
93
- "@nx/nx-freebsd-x64": "19.0.0-beta.4"
84
+ "@nx/nx-darwin-x64": "19.0.0-beta.5",
85
+ "@nx/nx-darwin-arm64": "19.0.0-beta.5",
86
+ "@nx/nx-linux-x64-gnu": "19.0.0-beta.5",
87
+ "@nx/nx-linux-x64-musl": "19.0.0-beta.5",
88
+ "@nx/nx-win32-x64-msvc": "19.0.0-beta.5",
89
+ "@nx/nx-linux-arm64-gnu": "19.0.0-beta.5",
90
+ "@nx/nx-linux-arm64-musl": "19.0.0-beta.5",
91
+ "@nx/nx-linux-arm-gnueabihf": "19.0.0-beta.5",
92
+ "@nx/nx-win32-arm64-msvc": "19.0.0-beta.5",
93
+ "@nx/nx-freebsd-x64": "19.0.0-beta.5"
94
94
  },
95
95
  "nx-migrations": {
96
96
  "migrations": "./migrations.json",
@@ -395,9 +395,9 @@ export interface NxJsonConfiguration<T = '*' | string[]> {
395
395
  useInferencePlugins?: boolean;
396
396
  }
397
397
  export type PluginConfiguration = string | ExpandedPluginConfiguration;
398
- export type ExpandedPluginConfiguration = {
398
+ export type ExpandedPluginConfiguration<T = unknown> = {
399
399
  plugin: string;
400
- options?: unknown;
400
+ options?: T;
401
401
  include?: string[];
402
402
  exclude?: string[];
403
403
  };
@@ -3,8 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
5
  <title>Nx Workspace Project Graph</title>
6
- <base href="/" />
7
-
6
+ <base href="/">
8
7
  <meta name="viewport" content="width=device-width, initial-scale=1" />
9
8
  <link rel="icon" type="image/x-icon" href="favicon.ico" />
10
9