美文网首页
Gulp常用api简介

Gulp常用api简介

作者: peppermint_egg | 来源:发表于2017-06-08 18:09 被阅读43次

    gulp

    gulp是一个nodejs的streaming构建工具,所谓的streaming大致意思就是把构建流程想成一个个链接的管道(pipe)。

    gulp.src()

    输出(Emits)符合所提供的匹配模式(glob)或者匹配模式的数组(array of globs)的文件。 将返回一个Vinyl filesstream它可以被piped到别的插件中。

    gulp.dest()

    能被 pipe 进来,并且将会写文件。并且重新输出(emits)所有数据,因此你可以将它 pipe 到多个文件夹。如果某文件夹不存在,将会自动创建它。

    gulp.task()

    定义一个使用Orchestrator实现的任务(task)。

    gulp.watch()

    监视文件,并且可以在文件发生改动时候做一些事情。它总会返回一个 EventEmitter 来发射(emit)change事件。

    各个API参数查看官网;http://www.gulpjs.com.cn/docs/api/

    相关文章

      网友评论

          本文标题:Gulp常用api简介

          本文链接:https://www.haomeiwen.com/subject/jtetqxtx.html