nx 19.5.4 → 19.5.6
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +12 -12
- package/schemas/project-schema.json +40 -6
- package/src/command-line/connect/connect-to-nx-cloud.d.ts +1 -1
- package/src/command-line/connect/connect-to-nx-cloud.js +3 -3
- package/src/command-line/migrate/migrate.js +14 -6
- package/src/core/graph/main.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/utils/git-utils.js +3 -1
Binary file
|
package/src/utils/git-utils.js
CHANGED
@@ -8,7 +8,9 @@ const child_process_1 = require("child_process");
|
|
8
8
|
const devkit_exports_1 = require("../devkit-exports");
|
9
9
|
function getGithubSlugOrNull() {
|
10
10
|
try {
|
11
|
-
const gitRemote = (0, child_process_1.execSync)('git remote -v'
|
11
|
+
const gitRemote = (0, child_process_1.execSync)('git remote -v', {
|
12
|
+
stdio: 'pipe',
|
13
|
+
}).toString();
|
12
14
|
// If there are no remotes, we default to github
|
13
15
|
if (!gitRemote || gitRemote.length === 0) {
|
14
16
|
return 'github';
|