Skip to content

Commit

Permalink
Merge pull request #1496 from beenanner/update-getting-started
Browse files Browse the repository at this point in the history
Modify getting started example for version 4.0
  • Loading branch information
phated committed Mar 28, 2016
2 parents 22fbb67 + f8e716f commit 1e7728f
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 @@ -20,10 +20,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 @@ -40,7 +43,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, .series, 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 1e7728f

Please sign in to comment.