From af2cf20b407085cddd481c4a57754c6a88a3b020 Mon Sep 17 00:00:00 2001 From: Eric Blackburn Date: Fri, 30 Oct 2020 12:32:09 -0500 Subject: [PATCH] issue 166 fixed by changing version of the imported yaml node module to 1.10.0 instead of 2.0.0, from issue 149. issue 149 does fix the newline problem, only the version being imported wasn't correct --- client/package-lock.json | 8 ++++---- client/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index da7405d..8201115 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -8473,7 +8473,7 @@ }, "tough-cookie": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "resolved": "https://nexus.corp.indeed.com/repository/npm/tough-cookie/-/tough-cookie-2.5.0.tgz", "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", "requires": { "psl": "^1.1.28", @@ -16358,9 +16358,9 @@ "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" }, "yaml": { - "version": "2.0.0-1", - "resolved": "https://nexus.corp.indeed.com/repository/npm/yaml/-/yaml-2.0.0-1.tgz", - "integrity": "sha512-W7h5dEhywMKenDJh2iX/LABkbFnBxasD27oyXWDS/feDsxiw0dD5ncXdYXgkvAsXIY2MpW/ZKkr9IU30DBdMNQ==" + "version": "1.10.0", + "resolved": "https://nexus.corp.indeed.com/repository/npm/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==" }, "yargs": { "version": "13.3.2", diff --git a/client/package.json b/client/package.json index a6843f1..c1cb5cc 100644 --- a/client/package.json +++ b/client/package.json @@ -28,7 +28,7 @@ "swagger-parser": "^7.0.1", "typescript": "^4.0.3", "xterm": "^3.14.5", - "yaml": "^2.0.0-0" + "yaml": "^1.10.0" }, "scripts": { "start": "cross-env react-scripts start",