prettier/scripts/build/rollup.base.config.js

17 lines
287 B
JavaScript
Raw Normal View History

export default {
onwarn: function(warning) {
if (
[
2017-06-28 22:37:33 +03:00
"EVAL",
"MISSING_GLOBAL_NAME",
"MISSING_NODE_BUILTINS",
"UNRESOLVED_IMPORT"
].find(code => code === warning.code)
) {
return;
}
console.warn(warning.message);
2017-06-28 22:37:33 +03:00
}
};