From db6a745384049724896e8d52ad8fcf229671c57e Mon Sep 17 00:00:00 2001 From: Julia Afeltra <30803904+jafeltra@users.noreply.github.com> Date: Fri, 25 Feb 2022 12:42:12 -0500 Subject: [PATCH] Bump to v2.3.0 (#1031) * Bump follow-redirects based on npm audit * 2.3.0 * Add spaces to error message --- npm-shrinkwrap.json | 8 ++++---- package.json | 2 +- src/ig/IGExporter.ts | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index f40d30f29..02c57bdff 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,6 +1,6 @@ { "name": "fsh-sushi", - "version": "2.2.6", + "version": "2.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -3938,9 +3938,9 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "follow-redirects": { - "version": "1.14.7", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz", - "integrity": "sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==" + "version": "1.14.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz", + "integrity": "sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==" }, "form-data": { "version": "3.0.1", diff --git a/package.json b/package.json index 54af3f7bb..ae24971c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fsh-sushi", - "version": "2.2.6", + "version": "2.3.0", "description": "Sushi Unshortens Short Hand Inputs (FSH Compiler)", "scripts": { "build": "del-cli dist && tsc && copyfiles -u 3 \"src/utils/init-project/*\" dist/utils/init-project", diff --git a/src/ig/IGExporter.ts b/src/ig/IGExporter.ts index 7abbb2b16..62c330567 100644 --- a/src/ig/IGExporter.ts +++ b/src/ig/IGExporter.ts @@ -954,10 +954,10 @@ export class IGExporter { } if (deeplyNestedFiles.length) { logger.warn( - 'The following files were not added to the ImplementationGuide JSON because they are not in one of the supported' + - 'input folders or are nested too deep in one of those folders. While SUSHI automatically supports resources in' + - 'sub-folders, the IG Publisher does not, unless the folder is explicitly added via the template or an IG parameter.' + - 'To fix any issues you may encounter due to this, adjust your IG parameters or template accordingly or move these' + + 'The following files were not added to the ImplementationGuide JSON because they are not in one of the supported ' + + 'input folders or are nested too deep in one of those folders. While SUSHI automatically supports resources in ' + + 'sub-folders, the IG Publisher does not, unless the folder is explicitly added via the template or an IG parameter. ' + + 'To fix any issues you may encounter due to this, adjust your IG parameters or template accordingly or move these ' + `files so they are directly under a supported input folder (e.g., input/resources, input/profiles, etc.):\n - ${deeplyNestedFiles.join( '\n - ' )}`