Problem with endless gulp-inject loop during gulp.watch task (Gulp 4)
I am using Gulp 4 with some plugins (gulp-concat, gulp-imagemin, gulp-inject, and browsersync) and running a workflow like this:
const
gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
inject = require('gulp-inject'),
uglifyjs = require('gulp-uglify'),
concat = require('gulp-concat'),
browsersync = require('browser-sync')
del = require('del');
var from = {
src: 'src/**/*',
html: 'src/**/*.html',
css: 'src/**/*.css',
js: 'src/**/*.js',
font: 'src/assets/fonts/**/*',
img: 'src/**/*.{jpg,png,svg,gif}',
meta: 'src/**/*.{webmanifest,xml}'
};
var to = {
dist: 'dist',
html: 'dist/**/*.html',
css: 'dist/assets/css/',
js: 'dist/assets/js/',
font: 'dist/assets/fonts/',
img: 'dist/**/*.{jpg,png,svg,gif}',
meta: 'dist/**/*.{webmanifest,xml}'
};
function deldist () {
return del(to.dist)
};
// concat -> hoya.css
function styles () {
return gulp.src([
'src/**/!(main)*.css',
'src/**/main.css'
])
.pipe(concat('hoya.css'))
.pipe(gulp.dest(to.css))
};
// concat -> hoya.js
function scripts () {
return gulp.src([
'src/**/!(app)*.js',
'src/**/app.js'
])
.pipe(concat('hoya.js'))
.pipe(gulp.dest(to.js))
};
// imagemin -> copy
function images () {
return gulp.src(from.img)
.pipe(imagemin([
imagemin.jpegtran({
progressive: true
})
]))
.pipe(gulp.dest(to.dist))
};
function markup () {
return gulp.src(from.html).pipe(gulp.dest(to.dist))
};
function misc (done) {
gulp.src(from.meta).pipe(gulp.dest(to.dist));
gulp.src(from.font).pipe(gulp.dest(to.font));
done();
}
// inject css, cs, partial html -> copy
function inj () {
var css = gulp.src(to.css + '*.css', {read: false});
var js = gulp.src(to.js + '*.js', {read: false});
gulp.src([to.html, '!dist/assets/html/*.html'])
.pipe(inject(css, {relative: true}))
.pipe(inject(js, {relative: true}))
.pipe(inject(gulp.src('dist/assets/html/*.html'), {
starttag: '<!-- inject:{{path}} -->',
relative: true,
transform: function (filePath, file) {
return file.contents.toString('utf8')
}}))
.pipe(gulp.dest(to.dist))
};
function server (done) {
browsersync({
server: {
baseDir: './dist'
}
});
done()
};
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(from.src, gulp.series(inj));
done()
}
// delete dist -> copy assets -> inject
exports.build = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj
);
// delete dist -> copy assets -> inject -> server
exports.default = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj,
gulp.parallel(server, watcher)
);
-
[03:38:38] └─┬ default
[03:38:38] └─┬ <series>
[03:38:38] ├── deldist
[03:38:38] ├─┬ <parallel>
[03:38:38] │ ├── images
[03:38:38] │ ├── styles
[03:38:38] │ ├── scripts
[03:38:38] │ ├── markup
[03:38:38] │ └── misc
[03:38:38] ├── inj
[03:38:38] └─┬ <parallel>
[03:38:38] ├── server
[03:38:38] └── watcher
-
deldist() - delete previous /dist directory
styles() - concatenate all CSSs to a single hoya.css + copy to /dist
scripts() - concatenate all JSs to a single hoya.js + copy to /dist
images() - optimize all images + copy to /dist
markup(), misc() - Copy all HTMLs, xml, webmanifest, and font files to /dist
inj() - inject CSS, JS, and partial HTMLs inside /dist/assets/html/ to parent HTMLs
server() - initiate server via browsersync
watcher() Watching any assets (HTML, CSS, JS, Images) changes in /src/ and copy changed files to /dist
-
Problems:
During step 1 - 7 everything was running smoothly, until the watcher() function is not working properly without any error. If I change any files in /src, the inj() and server() respond, but the changed files not copied to /dist.
I tried to change the from.src to to.dist in function watcher() and produces endless loop with gulp-inject. Any ideas what might wrong? Thanks!
-
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(to.dist, gulp.series(inj));
done()
}
gulp gulp-watch gulp-browser-sync gulp-inject
add a comment |
I am using Gulp 4 with some plugins (gulp-concat, gulp-imagemin, gulp-inject, and browsersync) and running a workflow like this:
const
gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
inject = require('gulp-inject'),
uglifyjs = require('gulp-uglify'),
concat = require('gulp-concat'),
browsersync = require('browser-sync')
del = require('del');
var from = {
src: 'src/**/*',
html: 'src/**/*.html',
css: 'src/**/*.css',
js: 'src/**/*.js',
font: 'src/assets/fonts/**/*',
img: 'src/**/*.{jpg,png,svg,gif}',
meta: 'src/**/*.{webmanifest,xml}'
};
var to = {
dist: 'dist',
html: 'dist/**/*.html',
css: 'dist/assets/css/',
js: 'dist/assets/js/',
font: 'dist/assets/fonts/',
img: 'dist/**/*.{jpg,png,svg,gif}',
meta: 'dist/**/*.{webmanifest,xml}'
};
function deldist () {
return del(to.dist)
};
// concat -> hoya.css
function styles () {
return gulp.src([
'src/**/!(main)*.css',
'src/**/main.css'
])
.pipe(concat('hoya.css'))
.pipe(gulp.dest(to.css))
};
// concat -> hoya.js
function scripts () {
return gulp.src([
'src/**/!(app)*.js',
'src/**/app.js'
])
.pipe(concat('hoya.js'))
.pipe(gulp.dest(to.js))
};
// imagemin -> copy
function images () {
return gulp.src(from.img)
.pipe(imagemin([
imagemin.jpegtran({
progressive: true
})
]))
.pipe(gulp.dest(to.dist))
};
function markup () {
return gulp.src(from.html).pipe(gulp.dest(to.dist))
};
function misc (done) {
gulp.src(from.meta).pipe(gulp.dest(to.dist));
gulp.src(from.font).pipe(gulp.dest(to.font));
done();
}
// inject css, cs, partial html -> copy
function inj () {
var css = gulp.src(to.css + '*.css', {read: false});
var js = gulp.src(to.js + '*.js', {read: false});
gulp.src([to.html, '!dist/assets/html/*.html'])
.pipe(inject(css, {relative: true}))
.pipe(inject(js, {relative: true}))
.pipe(inject(gulp.src('dist/assets/html/*.html'), {
starttag: '<!-- inject:{{path}} -->',
relative: true,
transform: function (filePath, file) {
return file.contents.toString('utf8')
}}))
.pipe(gulp.dest(to.dist))
};
function server (done) {
browsersync({
server: {
baseDir: './dist'
}
});
done()
};
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(from.src, gulp.series(inj));
done()
}
// delete dist -> copy assets -> inject
exports.build = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj
);
// delete dist -> copy assets -> inject -> server
exports.default = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj,
gulp.parallel(server, watcher)
);
-
[03:38:38] └─┬ default
[03:38:38] └─┬ <series>
[03:38:38] ├── deldist
[03:38:38] ├─┬ <parallel>
[03:38:38] │ ├── images
[03:38:38] │ ├── styles
[03:38:38] │ ├── scripts
[03:38:38] │ ├── markup
[03:38:38] │ └── misc
[03:38:38] ├── inj
[03:38:38] └─┬ <parallel>
[03:38:38] ├── server
[03:38:38] └── watcher
-
deldist() - delete previous /dist directory
styles() - concatenate all CSSs to a single hoya.css + copy to /dist
scripts() - concatenate all JSs to a single hoya.js + copy to /dist
images() - optimize all images + copy to /dist
markup(), misc() - Copy all HTMLs, xml, webmanifest, and font files to /dist
inj() - inject CSS, JS, and partial HTMLs inside /dist/assets/html/ to parent HTMLs
server() - initiate server via browsersync
watcher() Watching any assets (HTML, CSS, JS, Images) changes in /src/ and copy changed files to /dist
-
Problems:
During step 1 - 7 everything was running smoothly, until the watcher() function is not working properly without any error. If I change any files in /src, the inj() and server() respond, but the changed files not copied to /dist.
I tried to change the from.src to to.dist in function watcher() and produces endless loop with gulp-inject. Any ideas what might wrong? Thanks!
-
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(to.dist, gulp.series(inj));
done()
}
gulp gulp-watch gulp-browser-sync gulp-inject
add a comment |
I am using Gulp 4 with some plugins (gulp-concat, gulp-imagemin, gulp-inject, and browsersync) and running a workflow like this:
const
gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
inject = require('gulp-inject'),
uglifyjs = require('gulp-uglify'),
concat = require('gulp-concat'),
browsersync = require('browser-sync')
del = require('del');
var from = {
src: 'src/**/*',
html: 'src/**/*.html',
css: 'src/**/*.css',
js: 'src/**/*.js',
font: 'src/assets/fonts/**/*',
img: 'src/**/*.{jpg,png,svg,gif}',
meta: 'src/**/*.{webmanifest,xml}'
};
var to = {
dist: 'dist',
html: 'dist/**/*.html',
css: 'dist/assets/css/',
js: 'dist/assets/js/',
font: 'dist/assets/fonts/',
img: 'dist/**/*.{jpg,png,svg,gif}',
meta: 'dist/**/*.{webmanifest,xml}'
};
function deldist () {
return del(to.dist)
};
// concat -> hoya.css
function styles () {
return gulp.src([
'src/**/!(main)*.css',
'src/**/main.css'
])
.pipe(concat('hoya.css'))
.pipe(gulp.dest(to.css))
};
// concat -> hoya.js
function scripts () {
return gulp.src([
'src/**/!(app)*.js',
'src/**/app.js'
])
.pipe(concat('hoya.js'))
.pipe(gulp.dest(to.js))
};
// imagemin -> copy
function images () {
return gulp.src(from.img)
.pipe(imagemin([
imagemin.jpegtran({
progressive: true
})
]))
.pipe(gulp.dest(to.dist))
};
function markup () {
return gulp.src(from.html).pipe(gulp.dest(to.dist))
};
function misc (done) {
gulp.src(from.meta).pipe(gulp.dest(to.dist));
gulp.src(from.font).pipe(gulp.dest(to.font));
done();
}
// inject css, cs, partial html -> copy
function inj () {
var css = gulp.src(to.css + '*.css', {read: false});
var js = gulp.src(to.js + '*.js', {read: false});
gulp.src([to.html, '!dist/assets/html/*.html'])
.pipe(inject(css, {relative: true}))
.pipe(inject(js, {relative: true}))
.pipe(inject(gulp.src('dist/assets/html/*.html'), {
starttag: '<!-- inject:{{path}} -->',
relative: true,
transform: function (filePath, file) {
return file.contents.toString('utf8')
}}))
.pipe(gulp.dest(to.dist))
};
function server (done) {
browsersync({
server: {
baseDir: './dist'
}
});
done()
};
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(from.src, gulp.series(inj));
done()
}
// delete dist -> copy assets -> inject
exports.build = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj
);
// delete dist -> copy assets -> inject -> server
exports.default = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj,
gulp.parallel(server, watcher)
);
-
[03:38:38] └─┬ default
[03:38:38] └─┬ <series>
[03:38:38] ├── deldist
[03:38:38] ├─┬ <parallel>
[03:38:38] │ ├── images
[03:38:38] │ ├── styles
[03:38:38] │ ├── scripts
[03:38:38] │ ├── markup
[03:38:38] │ └── misc
[03:38:38] ├── inj
[03:38:38] └─┬ <parallel>
[03:38:38] ├── server
[03:38:38] └── watcher
-
deldist() - delete previous /dist directory
styles() - concatenate all CSSs to a single hoya.css + copy to /dist
scripts() - concatenate all JSs to a single hoya.js + copy to /dist
images() - optimize all images + copy to /dist
markup(), misc() - Copy all HTMLs, xml, webmanifest, and font files to /dist
inj() - inject CSS, JS, and partial HTMLs inside /dist/assets/html/ to parent HTMLs
server() - initiate server via browsersync
watcher() Watching any assets (HTML, CSS, JS, Images) changes in /src/ and copy changed files to /dist
-
Problems:
During step 1 - 7 everything was running smoothly, until the watcher() function is not working properly without any error. If I change any files in /src, the inj() and server() respond, but the changed files not copied to /dist.
I tried to change the from.src to to.dist in function watcher() and produces endless loop with gulp-inject. Any ideas what might wrong? Thanks!
-
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(to.dist, gulp.series(inj));
done()
}
gulp gulp-watch gulp-browser-sync gulp-inject
I am using Gulp 4 with some plugins (gulp-concat, gulp-imagemin, gulp-inject, and browsersync) and running a workflow like this:
const
gulp = require('gulp'),
imagemin = require('gulp-imagemin'),
inject = require('gulp-inject'),
uglifyjs = require('gulp-uglify'),
concat = require('gulp-concat'),
browsersync = require('browser-sync')
del = require('del');
var from = {
src: 'src/**/*',
html: 'src/**/*.html',
css: 'src/**/*.css',
js: 'src/**/*.js',
font: 'src/assets/fonts/**/*',
img: 'src/**/*.{jpg,png,svg,gif}',
meta: 'src/**/*.{webmanifest,xml}'
};
var to = {
dist: 'dist',
html: 'dist/**/*.html',
css: 'dist/assets/css/',
js: 'dist/assets/js/',
font: 'dist/assets/fonts/',
img: 'dist/**/*.{jpg,png,svg,gif}',
meta: 'dist/**/*.{webmanifest,xml}'
};
function deldist () {
return del(to.dist)
};
// concat -> hoya.css
function styles () {
return gulp.src([
'src/**/!(main)*.css',
'src/**/main.css'
])
.pipe(concat('hoya.css'))
.pipe(gulp.dest(to.css))
};
// concat -> hoya.js
function scripts () {
return gulp.src([
'src/**/!(app)*.js',
'src/**/app.js'
])
.pipe(concat('hoya.js'))
.pipe(gulp.dest(to.js))
};
// imagemin -> copy
function images () {
return gulp.src(from.img)
.pipe(imagemin([
imagemin.jpegtran({
progressive: true
})
]))
.pipe(gulp.dest(to.dist))
};
function markup () {
return gulp.src(from.html).pipe(gulp.dest(to.dist))
};
function misc (done) {
gulp.src(from.meta).pipe(gulp.dest(to.dist));
gulp.src(from.font).pipe(gulp.dest(to.font));
done();
}
// inject css, cs, partial html -> copy
function inj () {
var css = gulp.src(to.css + '*.css', {read: false});
var js = gulp.src(to.js + '*.js', {read: false});
gulp.src([to.html, '!dist/assets/html/*.html'])
.pipe(inject(css, {relative: true}))
.pipe(inject(js, {relative: true}))
.pipe(inject(gulp.src('dist/assets/html/*.html'), {
starttag: '<!-- inject:{{path}} -->',
relative: true,
transform: function (filePath, file) {
return file.contents.toString('utf8')
}}))
.pipe(gulp.dest(to.dist))
};
function server (done) {
browsersync({
server: {
baseDir: './dist'
}
});
done()
};
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(from.src, gulp.series(inj));
done()
}
// delete dist -> copy assets -> inject
exports.build = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj
);
// delete dist -> copy assets -> inject -> server
exports.default = gulp.series(
deldist,
gulp.parallel(
images, styles, scripts, markup, misc),
inj,
gulp.parallel(server, watcher)
);
-
[03:38:38] └─┬ default
[03:38:38] └─┬ <series>
[03:38:38] ├── deldist
[03:38:38] ├─┬ <parallel>
[03:38:38] │ ├── images
[03:38:38] │ ├── styles
[03:38:38] │ ├── scripts
[03:38:38] │ ├── markup
[03:38:38] │ └── misc
[03:38:38] ├── inj
[03:38:38] └─┬ <parallel>
[03:38:38] ├── server
[03:38:38] └── watcher
-
deldist() - delete previous /dist directory
styles() - concatenate all CSSs to a single hoya.css + copy to /dist
scripts() - concatenate all JSs to a single hoya.js + copy to /dist
images() - optimize all images + copy to /dist
markup(), misc() - Copy all HTMLs, xml, webmanifest, and font files to /dist
inj() - inject CSS, JS, and partial HTMLs inside /dist/assets/html/ to parent HTMLs
server() - initiate server via browsersync
watcher() Watching any assets (HTML, CSS, JS, Images) changes in /src/ and copy changed files to /dist
-
Problems:
During step 1 - 7 everything was running smoothly, until the watcher() function is not working properly without any error. If I change any files in /src, the inj() and server() respond, but the changed files not copied to /dist.
I tried to change the from.src to to.dist in function watcher() and produces endless loop with gulp-inject. Any ideas what might wrong? Thanks!
-
function watcher (done) {
gulp.watch(from.js, gulp.series(scripts));
gulp.watch(from.css, gulp.series(styles));
gulp.watch(from.img, gulp.series(images));
gulp.watch(from.html, gulp.series(markup));
gulp.watch(from.meta, gulp.series(misc));
gulp.watch(to.dist, gulp.series(inj));
done()
}
gulp gulp-watch gulp-browser-sync gulp-inject
gulp gulp-watch gulp-browser-sync gulp-inject
asked Nov 14 '18 at 21:03
Askar SabiqAskar Sabiq
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53308680%2fproblem-with-endless-gulp-inject-loop-during-gulp-watch-task-gulp-4%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53308680%2fproblem-with-endless-gulp-inject-loop-during-gulp-watch-task-gulp-4%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown