Created
June 30, 2014 14:13
-
-
Save nmccready/ae5ba878090248183173 to your computer and use it in GitHub Desktop.
gulp async bs, nothing waits here, this just means default runs one, two, three and they are parallel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp.task "one", -> | |
gulp.task "two", -> | |
gulp.task "three", -> | |
gulp.task "default" ["one","two","three"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment