We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434fda0 commit c007895Copy full SHA for c007895
rollup.config.mjs
@@ -51,6 +51,10 @@ function esmConfig() {
51
onLog(level, log, handler) {
52
switch (log.code) {
53
case 'CIRCULAR_DEPENDENCY':
54
+ if (log.ids.some((id) => id.includes('node_modules/rsvp/lib/rsvp'))) {
55
+ // rsvp has some internal cycles but they don't bother us
56
+ return;
57
+ }
58
process.stderr.write(log.message + '\n');
59
break;
60
case 'CYCLIC_CROSS_CHUNK_REEXPORT':
0 commit comments