npm install start-babel




``sh`
npm install --save-dev start-babelor
yarn add --dev start-babel
`js
import Start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import watch from 'start-watch';
import clean from 'start-clean';
import read from 'start-read';
import babel from 'start-babel';
import write from 'start-write';
const start = Start(reporter());
export const build = () => start(
files('build/'),
clean(),
files('lib/*/.js'),
read(),
babel({ sourceMaps: true }),
write('build/')
);
export const dev = () => start(
files('build/'),
clean(),
files('lib/*/.js'),
watch(file => start(
files(file),
read(),
babel(),
write('build/')
))
);
`
This task relies on [{ path, data, map }] input and provides the same, see documentation for details.
babel(options)
* options – Babel options, { ast: false }` by default