gulpでの独自の関数を実行する
4033 ワード
gulpで独自の処理をいれたい時がありますよね。
そんな時の覚書。
through2
https://qiita.com/morou/items/1297d5dd379ef013d46c
上記記事がとてもわかりやすく書いてありました!
これを参考にプラグインは作成できましたが、そんな大層なものは不要なときはthrough2を使って記述しましょう。
gulpfile.js
const through = require('through2');
gulp.task('deploy', (cb) => {
gulp.src(['src/**'], { base: '.' })
.pipe(through.obj((file, enc, callback) => {
if (file.isNull()) {
// 何もしない
return callback(null, file);
}
if (file.isStream()) {
// ストリームの場合はエラー
this.emit('error', new Error('Streams not supported!'));
}else if (file.isBuffer()) {
// ファイルの内容をcontentsに読み込み
let contents = String(file.contents);
// 独自の処理を記述する
// ・・・
return callback(null, file);
}
}));
});
このようにthrough.objを使用すれば処理が記述できます!
Author And Source
この問題について(gulpでの独自の関数を実行する), 我々は、より多くの情報をここで見つけました https://qiita.com/kyosuke5_20/items/cdd365ac561975b5f387著者帰属:元の著者の情報は、元の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 .