1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fix gulp watch functions

This commit is contained in:
Uncled1023 2020-06-23 00:35:07 -07:00
parent 09a33714ab
commit dad9de8606
2 changed files with 7 additions and 7 deletions

View File

@ -106,20 +106,20 @@ gulp.task("watch", function (done) {
// Watch Source Files
assets.forEach(function (src) {
for (var key in src) {
gulp.watch(key, ["copy-assets"]);
gulp.watch(key, gulp.parallel("copy-assets"));
}
});
// Watch Bundle File Itself
gulp.watch('./bundleconfig.json', ["load-bundle", "min"]);
gulp.watch('./bundleconfig.json', gulp.series("load-bundle", "min"));
// Watch Bundles
getBundles(".js").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, ["min:js"]);
gulp.watch(bundle.inputFiles, gulp.parallel("min:js"));
});
getBundles(".css").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, ["min:css"]);
gulp.watch(bundle.inputFiles, gulp.parallel("min:css"));
});
done();

View File

@ -131,7 +131,7 @@ gulp.task("watch", function (done) {
// Watch Source Files
assets.forEach(function (src) {
for (var key in src) {
gulp.watch(key, ["copy-assets"]);
gulp.watch(key, gulp.parallel("copy-assets"));
}
});
@ -140,11 +140,11 @@ gulp.task("watch", function (done) {
// Watch Bundles
getBundles(".js").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, ["min:js"]);
gulp.watch(bundle.inputFiles, gulp.parallel("min:js"));
});
getBundles(".css").forEach(function (bundle) {
gulp.watch(bundle.inputFiles, ["min:css"]);
gulp.watch(bundle.inputFiles, gulp.parallel("min:css"));
});
done();