@@ -20,6 +20,7 @@ const indexConfig = {
|
||||
file: 'dist/index.js',
|
||||
format: 'es',
|
||||
},
|
||||
onwarn,
|
||||
plugins: [
|
||||
resolve({ extensions }),
|
||||
babel({
|
||||
@@ -56,4 +57,15 @@ const configs = [
|
||||
},
|
||||
]
|
||||
|
||||
function onwarn(warning, warn) {
|
||||
if (
|
||||
warning.code === 'CIRCULAR_DEPENDENCY' &&
|
||||
warning.ids.some((id) => id.includes('@internationalized+date'))
|
||||
) {
|
||||
return
|
||||
}
|
||||
|
||||
warn(warning.message)
|
||||
}
|
||||
|
||||
export default configs
|
||||
|
||||
Reference in New Issue
Block a user