mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
const { babelify } = require('./compile-babel');
|
|
|
|
babelify({
|
|
watch: true,
|
|
silent: false,
|
|
// eslint-disable-next-line no-console
|
|
errorCallback: () => console.error('Failed to compile js'),
|
|
});
|