diff --git a/README.md b/README.md index 01dd80c..9f9cf00 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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. @@ -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. @@ -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). @@ -267,4 +267,4 @@ Released under the MIT license. *** -_This file was generated by [verb](https://github.com/verbose/verb) on January 26, 2016._ \ No newline at end of file +_This file was generated by [verb](https://github.com/verbose/verb) on January 27, 2016._ \ No newline at end of file