Skip to content

Commit

Permalink
fix: ignore circular dependency warnings
Browse files Browse the repository at this point in the history
We do this for consistency. 

See angular/angular-cli@0a1cd58
  • Loading branch information
Watercycle committed May 16, 2022
1 parent cdf7cce commit 9b93a18
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/flatten/rollup.ts
Expand Up @@ -54,6 +54,7 @@ export async function rollupBundleFile(
],
onwarn: warning => {
switch (warning.code) {
case 'CIRCULAR_DEPENDENCY':
case 'UNUSED_EXTERNAL_IMPORT':
case 'THIS_IS_UNDEFINED':
break;
Expand Down

0 comments on commit 9b93a18

Please sign in to comment.