Gulp4 入門サンプルソースコード
Gulpの使い方がよくわからない私のような人にサンプルソースコードを提供します。
Install
$ yarn add -D glup
$ npx gulp -v
Gulp3から4になったせいで...
若干書き方が変わり、ドットインストールのGulp入門などの書き方ではできなくなってきています。
具体的に変わった場所は、
gulp3は非常にシンプルで[]配列のような指定でよかった場所も4ではgulp.seriesの関数が必要となりました。
また、順次処理を行うには引数にdoneとdone()が必要で
並列処理を行うにはgulp.parallelが必要となりました。
サンプルソースコード
const gulp = require('gulp');
// htmlファイルのコピー
gulp.task('html', (done) => {
gulp.src('./src/*.html')
.pipe(gulp.dest('./dist'));
done()
});
// 1秒スリープ
gulp.task('sleep', (done) => {
setTimeout(() => {
console.log('sleep 1000ms');
done()
}, 1000);
});
// ENDメッセージ
gulp.task('msg', (done) => {
console.log('Gulp END!');
done()
});
gulp.task('default',
gulp.series(
// 順次実行
// 'html', 'sleep', 'msg'
// 並列実行
gulp.parallel('html', 'sleep', 'msg'),
)
);
Author And Source
この問題について(Gulp4 入門サンプルソースコード), 我々は、より多くの情報をここで見つけました https://qiita.com/yusk24/items/d99d0b4e9ddd976b12ee著者帰属:元の著者の情報は、元の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 .