Skip to content

Commit

Permalink
Modify getting started example for version 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
beenanner committed Jan 22, 2016
1 parent 6472219 commit f71f9ad
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ $ npm install --save-dev gulp
```js
var gulp = require('gulp');

gulp.task('default', function(done) {
gulp.task('default', defaultTask);

function defaultTask(done) {
// place code for your default task here
done();
});
}

```

#### 4. Run gulp:
Expand All @@ -37,7 +40,7 @@ To run individual tasks, use `gulp <task> <othertask>`.

You have an empty gulpfile and everything is installed. How do you REALLY get started? Check out the [recipes](recipes) and the [list of articles](README.md#articles) for more information.

## .src, .watch, .dest, CLI args - How do I use these things?
## .src, .watch, .dest, .parallel, .serial, CLI args - How do I use these things?

For API specific documentation you can check out the [documentation for that](API.md).

Expand Down

0 comments on commit f71f9ad

Please sign in to comment.