gulpを使って変更したファイルだけをコピーする
4941 ワード
更新したファイルだけ取得したい、という状況になり、勉強がてらgulpで書いてみました。
ただこれだと、追加したファイルが対応出来ないんですよねえ。
gulp.js
var gulp = require("gulp"),
changed = require("gulp-changed");
paths = {
src: "./src/**/*.+(php|js|css)",
dest: "./dest",
deploy: "./deploy"
}
gulp.task("deploy", function() {
gulp.src(paths.src)
.pipe(gulp.dest(paths.deploy));
});
gulp.task("copy", function() {
gulp.src(paths.src)
.pipe(changed(paths.deploy))
.pipe(gulp.dest(paths.deploy))
.pipe(gulp.dest(paths.dest));
});
gulp.task("watch", function() {
gulp.watch(paths.src, ['copy']);
});
gulp.task("default", function() {
gulp.start("deploy");
gulp.start("watch");
});
Author And Source
この問題について(gulpを使って変更したファイルだけをコピーする), 我々は、より多くの情報をここで見つけました https://qiita.com/gane_gane/items/46b0b242d8491a122905著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .