Skip to content

Instantly share code, notes, and snippets.

@benatkin
Created May 7, 2014 22:05
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 benatkin/f67f1aff4587127e57a9 to your computer and use it in GitHub Desktop.
Save benatkin/f67f1aff4587127e57a9 to your computer and use it in GitHub Desktop.
my first @gulpjs task
var gulp = require('gulp')
gulp.task('default', function(done) {
setTimeout(function() {
console.log('#suchwow')
setTimeout(function() {
console.log(' #sodoge')
setTimeout(function() {
console.log(' #manyamaze')
setTimeout(function() {
console.log(' #veryshibe')
setTimeout(function() {
done()
}, 1000)
}, 1000)
}, 1000)
}, 1000)
}, 1000)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment