Skip to content

Commit 7677813

Browse files
author
Orta
authored
Merge pull request microsoft#1101 from brianfinkelstein/master
typo found in Gulp.md
2 parents 04158f3 + 74c122b commit 7677813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/tutorials/Gulp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ There are basically three changes here, but they require you to refactor your co
313313

314314
1. We wrapped our `browserify` instance in a call to `watchify`, and then held on to the result.
315315
2. We called `watchedBrowserify.on('update', bundle);` so that Browserify will run the `bundle` function every time one of your TypeScript files changes.
316-
3. We called `watchedBrowserify.on('log', gutil.log);` to log to the console.
316+
3. We called `watchedBrowserify.on('log', fancy_log);` to log to the console.
317317

318318
Together (1) and (2) mean that we have to move our call to `browserify` out of the `default` task.
319319
And we have to give the function for `default` a name since both Watchify and Gulp need to call it.

0 commit comments

Comments
 (0)