mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2025-12-19 17:58:43 -05:00
chore: supress known d3 circular dep warnings (#1840)
This commit is contained in:
@@ -175,6 +175,10 @@ const config = ({
|
|||||||
if (warning.code === 'MODULE_LEVEL_DIRECTIVE' && warning.message.includes(`"use client"`)) {
|
if (warning.code === 'MODULE_LEVEL_DIRECTIVE' && warning.message.includes(`"use client"`)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
// https://github.com/d3/d3-interpolate/issues/58
|
||||||
|
if (/Circular dependency.*d3-*/.test(warning.message)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
warn(warning);
|
warn(warning);
|
||||||
},
|
},
|
||||||
input: path.resolve(CWD, 'src/index'),
|
input: path.resolve(CWD, 'src/index'),
|
||||||
|
|||||||
Reference in New Issue
Block a user