@nrwl/nx-cloud
Advanced tools
Comparing version 9.1.0-beta.3 to 9.1.0-beta.4
@@ -27,3 +27,3 @@ "use strict"; | ||
baseURL: baseUrl, | ||
timeout: 500, | ||
timeout: 1000, | ||
headers: { authorization: authToken } | ||
@@ -350,12 +350,3 @@ }); | ||
} | ||
let projects; | ||
if (hits.length > 1) { | ||
projects = `${hits[0]} and ${hits.length - 1} other projects`; | ||
} | ||
else { | ||
projects = hits.join(`, `); | ||
} | ||
if (projects.length > 20) { | ||
projects = `${hits.length} projects`; | ||
} | ||
const projects = hits.length === 1 ? hits[0] : `${hits.length} projects`; | ||
const message = output_1.output.colors.gray(`Results for ${projects} were retrieved from Nx Cloud.`); | ||
@@ -362,0 +353,0 @@ output_1.output.addNewline(); |
{ | ||
"name": "@nrwl/nx-cloud", | ||
"version": "9.1.0-beta.3", | ||
"version": "9.1.0-beta.4", | ||
"description": "Nx Cloud plugin for Nx", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32368
476