Skip to content

Commit

Permalink
generate docs with verb
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Jan 27, 2016
1 parent ad6c2fb commit f41e291
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var Composer = require('composer');

## API

### [.task](index.js#L68)
### [.task](index.js#L62)

Register a new task with it's options and dependencies. To return the task object of an already registered task, pass the name of the task without any additional parameters.

Expand All @@ -45,7 +45,7 @@ app.task('site', ['styles'], function() {
var task = app.task('site');
```

### [.build](index.js#L125)
### [.build](index.js#L118)

Build a task or array of tasks.

Expand All @@ -63,7 +63,7 @@ app.build('default', function(err, results) {
});
```

### [.series](index.js#L185)
### [.series](index.js#L178)

Compose task or list of tasks into a single function that runs the tasks in series.

Expand Down Expand Up @@ -94,7 +94,7 @@ fn(function(err) {
//=> done
```

### [.parallel](index.js#L217)
### [.parallel](index.js#L210)

Compose task or list of tasks into a single function that runs the tasks in parallel.

Expand Down Expand Up @@ -127,7 +127,7 @@ fn(function(err) {
//=> done
```

### [.watch](index.js#L234)
### [.watch](index.js#L227)

Watch a file, directory, or glob pattern for changes and build a task or list of tasks when changes are made. Watch is powered by [chokidar](https://github.com/paulmillr/chokidar) so arguments can be anything supported by [chokidar.watch](https://github.com/paulmillr/chokidar#api).

Expand Down Expand Up @@ -267,4 +267,4 @@ Released under the MIT license.

***

_This file was generated by [verb](https://github.com/verbose/verb) on January 26, 2016._
_This file was generated by [verb](https://github.com/verbose/verb) on January 27, 2016._

0 comments on commit f41e291

Please # to comment.