Skip to content

Instantly share code, notes, and snippets.

@lucifiel0121
Last active July 31, 2018 02:09
Show Gist options
  • Save lucifiel0121/cc78e1b24e2c8a1a9dadada8a6d94283 to your computer and use it in GitHub Desktop.
Save lucifiel0121/cc78e1b24e2c8a1a9dadada8a6d94283 to your computer and use it in GitHub Desktop.
gulp.task('name'[,deps],function)
// gulp.task 宣告任務
// name : 命名
gulp.task('hello',function(){
console.log('Hello world!');
})
gulp.task('build',['css','js','ing']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment