nx 17.1.0-beta.5 → 17.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "17.1.0-beta.5",
3
+ "version": "17.1.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": {
@@ -67,7 +67,7 @@
67
67
  "yargs": "^17.6.2",
68
68
  "yargs-parser": "21.1.1",
69
69
  "node-machine-id": "1.1.12",
70
- "@nrwl/tao": "17.1.0-beta.5"
70
+ "@nrwl/tao": "17.1.1"
71
71
  },
72
72
  "peerDependencies": {
73
73
  "@swc-node/register": "^1.6.7",
@@ -82,16 +82,16 @@
82
82
  }
83
83
  },
84
84
  "optionalDependencies": {
85
- "@nx/nx-darwin-x64": "17.1.0-beta.5",
86
- "@nx/nx-darwin-arm64": "17.1.0-beta.5",
87
- "@nx/nx-linux-x64-gnu": "17.1.0-beta.5",
88
- "@nx/nx-linux-x64-musl": "17.1.0-beta.5",
89
- "@nx/nx-win32-x64-msvc": "17.1.0-beta.5",
90
- "@nx/nx-linux-arm64-gnu": "17.1.0-beta.5",
91
- "@nx/nx-linux-arm64-musl": "17.1.0-beta.5",
92
- "@nx/nx-linux-arm-gnueabihf": "17.1.0-beta.5",
93
- "@nx/nx-win32-arm64-msvc": "17.1.0-beta.5",
94
- "@nx/nx-freebsd-x64": "17.1.0-beta.5"
85
+ "@nx/nx-darwin-x64": "17.1.1",
86
+ "@nx/nx-darwin-arm64": "17.1.1",
87
+ "@nx/nx-linux-x64-gnu": "17.1.1",
88
+ "@nx/nx-linux-x64-musl": "17.1.1",
89
+ "@nx/nx-win32-x64-msvc": "17.1.1",
90
+ "@nx/nx-linux-arm64-gnu": "17.1.1",
91
+ "@nx/nx-linux-arm64-musl": "17.1.1",
92
+ "@nx/nx-linux-arm-gnueabihf": "17.1.1",
93
+ "@nx/nx-win32-arm64-msvc": "17.1.1",
94
+ "@nx/nx-freebsd-x64": "17.1.1"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
@@ -126,9 +126,9 @@ function parseGitCommit(commit) {
126
126
  };
127
127
  }
128
128
  exports.parseGitCommit = parseGitCommit;
129
- function getCommitHash(ref) {
129
+ async function getCommitHash(ref) {
130
130
  try {
131
- return (0, exec_command_1.execCommand)('git', ['rev-parse', ref]);
131
+ return (await (0, exec_command_1.execCommand)('git', ['rev-parse', ref])).trim();
132
132
  }
133
133
  catch (e) {
134
134
  throw new Error(`Unknown revision: ${ref}`);