nx 20.4.0-canary.20250111-bbbfd9f → 20.4.0-canary.20250115-0ae8665

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.4.0-canary.20250111-bbbfd9f",
3
+ "version": "20.4.0-canary.20250115-0ae8665",
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.4.0-canary.20250111-bbbfd9f",
86
- "@nx/nx-darwin-x64": "20.4.0-canary.20250111-bbbfd9f",
87
- "@nx/nx-freebsd-x64": "20.4.0-canary.20250111-bbbfd9f",
88
- "@nx/nx-linux-arm-gnueabihf": "20.4.0-canary.20250111-bbbfd9f",
89
- "@nx/nx-linux-arm64-gnu": "20.4.0-canary.20250111-bbbfd9f",
90
- "@nx/nx-linux-arm64-musl": "20.4.0-canary.20250111-bbbfd9f",
91
- "@nx/nx-linux-x64-gnu": "20.4.0-canary.20250111-bbbfd9f",
92
- "@nx/nx-linux-x64-musl": "20.4.0-canary.20250111-bbbfd9f",
93
- "@nx/nx-win32-arm64-msvc": "20.4.0-canary.20250111-bbbfd9f",
94
- "@nx/nx-win32-x64-msvc": "20.4.0-canary.20250111-bbbfd9f"
85
+ "@nx/nx-darwin-arm64": "20.4.0-canary.20250115-0ae8665",
86
+ "@nx/nx-darwin-x64": "20.4.0-canary.20250115-0ae8665",
87
+ "@nx/nx-freebsd-x64": "20.4.0-canary.20250115-0ae8665",
88
+ "@nx/nx-linux-arm-gnueabihf": "20.4.0-canary.20250115-0ae8665",
89
+ "@nx/nx-linux-arm64-gnu": "20.4.0-canary.20250115-0ae8665",
90
+ "@nx/nx-linux-arm64-musl": "20.4.0-canary.20250115-0ae8665",
91
+ "@nx/nx-linux-x64-gnu": "20.4.0-canary.20250115-0ae8665",
92
+ "@nx/nx-linux-x64-musl": "20.4.0-canary.20250115-0ae8665",
93
+ "@nx/nx-win32-arm64-msvc": "20.4.0-canary.20250115-0ae8665",
94
+ "@nx/nx-win32-x64-msvc": "20.4.0-canary.20250115-0ae8665"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
@@ -313,6 +313,14 @@ function createAPI(overrideReleaseConfig) {
313
313
  });
314
314
  }
315
315
  }
316
+ if (args.gitPush ?? nxReleaseConfig.version.git.push) {
317
+ output_1.output.logSingleLine(`Pushing to git remote "${args.gitRemote}"`);
318
+ await (0, git_1.gitPush)({
319
+ gitRemote: args.gitRemote,
320
+ dryRun: args.dryRun,
321
+ verbose: args.verbose,
322
+ });
323
+ }
316
324
  return {
317
325
  workspaceVersion,
318
326
  projectsVersionData: versionData,