Elide the exact node version rush complains about from the docker output (#32204)

This commit is contained in:
Wesley Wigham
2019-07-01 13:13:44 -07:00
committed by GitHub
parent a890275463
commit ff81d5261e
3 changed files with 3 additions and 3 deletions

View File

@@ -201,7 +201,7 @@ function sanitizeTimestamps(result: string): string {
function sanitizeVersionSpecifiers(result: string): string {
return result
.replace(/\d+.\d+.\d+-insiders.\d\d\d\d\d\d\d\d/g, "X.X.X-insiders.xxxxxxxx")
.replace(/([@v])\d+\.\d+\.\d+/g, "$1X.X.X");
.replace(/([@v\()])\d+\.\d+\.\d+/g, "$1X.X.X");
}
/**