Skip to content

Instantly share code, notes, and snippets.

@nmccready
Created June 30, 2014 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmccready/4645bb5e277c0ad627a6 to your computer and use it in GitHub Desktop.
Save nmccready/4645bb5e277c0ad627a6 to your computer and use it in GitHub Desktop.
execute in order
gulp.task "one" ->
gulp.task "two", ["one"], ->
gulp.task "three", ["two"], ->
gulp.task "default" ["one","two","three"] # now they should execute in order, this is not ideal for cleaning at all as clean may need ot be a dependency everywhere
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment