mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
18 lines
277 B
JavaScript
18 lines
277 B
JavaScript
function runner(error, stats) {
|
|
/* eslint-disable no-console */
|
|
if (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
console.log(
|
|
stats.toString({
|
|
chunks: false,
|
|
colors: true,
|
|
}),
|
|
);
|
|
/* eslint-enable no-console */
|
|
}
|
|
|
|
module.exports = {runner};
|