Created
January 15, 2018 20:59
-
-
Save koldovsky/32938676dba43375709b1b8553eefde4 to your computer and use it in GitHub Desktop.
gulp Hello World!
This file contains hidden or 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
var gulp = require('gulp'); | |
gulp.task('default', defaultTask); | |
function defaultTask(done) { | |
// place code for your default task here | |
console.log('Hello World'); | |
done(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment