From c6ddb9cbea5ed2af67bdc97c566744ad790ad9f2 Mon Sep 17 00:00:00 2001 From: Stefan Penner Date: Fri, 11 Jun 2021 10:43:28 -0600 Subject: [PATCH] Update packages/core/src/portable.ts Co-authored-by: Robert Jackson --- packages/core/src/portable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/portable.ts b/packages/core/src/portable.ts index c2f6d9933..0525de8a3 100644 --- a/packages/core/src/portable.ts +++ b/packages/core/src/portable.ts @@ -24,7 +24,7 @@ export function maybeNodeModuleVersion(path: string) { const packagePath = findUpPackagePath(path); if (packagePath === null) { - throw new Error(`Could not find package.json for '${path}'`); + throw new Error(`[Embroider] Could not find package.json for '${path}'`); } else { return require(packagePath).version; // eslint-disable-line @typescript-eslint/no-require-imports }