From c2a1207d0e9ce78914b627b00b7203fa03422fae Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Sun, 14 Aug 2022 21:08:00 -0700 Subject: [PATCH] update warning message --- modules/bundler/bundleSystem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bundler/bundleSystem.ts b/modules/bundler/bundleSystem.ts index eac4b32b..fe93b03b 100644 --- a/modules/bundler/bundleSystem.ts +++ b/modules/bundler/bundleSystem.ts @@ -64,7 +64,7 @@ export class BundleSystem { this.waitingQueue.forEach(dangling => { const unsatisfied = new Set(dangling.activationDependencies); this.activatedBundles.forEach(activated => unsatisfied.delete(activated)); - console.error('Bundle', dangling.BundleName, 'was never activated because of unsatisfied dependencies: ', Array.from(unsatisfied).join(', ')); + console.error('Bundle', dangling.BundleName, 'was never activated because of unsatisfied dependencies:', Array.from(unsatisfied).join(', ')); }) }