Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
📝 update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsweet committed Dec 29, 2016
1 parent d9d9065 commit ce6ce55
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ Pretty reporter for [Start](https://github.com/start-runner/start).

## Install

```
npm i -S start-pretty-reporter
```sh
npm install --save-dev start-pretty-reporter
# or
yarn add --dev start-pretty-reporter
```

## Usage
Expand All @@ -32,16 +34,14 @@ import read from 'start-read';
import babel from 'start-babel';
import write from 'start-write';

export function build() {
return start(reporter())(
files('build/'),
clean(),
files('lib/**/*.js'),
read(),
babel(),
write('build/')
);
}
export const build = () => start(reporter())(
files('build/'),
clean(),
files('lib/**/*.js'),
read(),
babel(),
write('build/')
);
```

See [documentation](https://github.com/start-runner/start#readme) for details.
Expand Down

0 comments on commit ce6ce55

Please sign in to comment.