3.0.0 • Published 7 years ago

start-babel v3.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

start-babel

npm linux build windows build coverage deps

Babel task for Start.

Install

npm install --save-dev start-babel
# or
yarn add --dev start-babel

Usage

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.

Arguments

babel(options)

3.0.0

7 years ago

2.1.1

8 years ago

2.1.0

8 years ago

2.0.6

8 years ago

2.0.5

8 years ago

2.0.4

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago