From a2530ff514aebce2d4ac9b112890be3d216b8adf Mon Sep 17 00:00:00 2001 From: Bryan Hickerson Date: Wed, 14 Mar 2018 15:28:27 -0700 Subject: [PATCH] Add newline --- lib/stubs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stubs.js b/lib/stubs.js index c69e7d3..8a61aa5 100644 --- a/lib/stubs.js +++ b/lib/stubs.js @@ -64,7 +64,7 @@ function importsFor(src, fullPath) { try { return parseModule(src); } catch (error) { - throw new Error('Error parsing code while looking for "npm:" imports in file: ' + fullPath + ' ' + error.stack || error); + throw new Error('Error parsing code while looking for "npm:" imports in file: ' + fullPath + '\n' + error.stack || error); } }