diff --git a/commands/build/lib/config.js b/commands/build/lib/config.js index a0ac74b16..4d00a1155 100644 --- a/commands/build/lib/config.js +++ b/commands/build/lib/config.js @@ -175,6 +175,10 @@ const config = ({ if (warning.code === 'MODULE_LEVEL_DIRECTIVE' && warning.message.includes(`"use client"`)) { return; } + // https://github.com/d3/d3-interpolate/issues/58 + if (/Circular dependency.*d3-*/.test(warning.message)) { + return; + } warn(warning); }, input: path.resolve(CWD, 'src/index'),