mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 08:25:19 +01:00
update warning message
This commit is contained in:
parent
465c0c2c02
commit
c2a1207d0e
1 changed files with 1 additions and 1 deletions
|
|
@ -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(', '));
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue