storybook/scripts/watch-babel.js
Kai Roeder 65b8c31a95 Rename dev:js to dev:babel and dev:ts to dev:tsc since babel does ts-compiling as well
- dev:tsc is still a thing because of angular that won't compile with babel
2019-03-03 19:36:15 +01:00

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'),
});