Created
May 22, 2017 05:49
-
-
Save YasuakiHirano/133bb2b994012de89fe8337098c5f30d to your computer and use it in GitHub Desktop.
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'); | |
var webserver = require('gulp-webserver'); | |
gulp.task('default', function(){ | |
console.log("start"); | |
}); | |
gulp.task('web', function(){ | |
console.log("start server"); | |
gulp.src('app') | |
.pipe(webserver({ | |
livereload:true, | |
})); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment