Open geetee24 opened 7 years ago
You don't need the HiThere
task. It should go right in the htmlBuild
// ...
htmlbuild({
// build js with preprocessor
js: htmlbuild.preprocess.js(function(block) {
block.pipe(gulpSrc())
.pipe(jsBuild)
.pipe(uglify({
mangle: false
}));
block.end('dist/js/concat.js');
}),
// ...
if you want to only minify on certain environments do it like this.
but i do want other tasks to run after the 'build' and something appears to be wrong with the build task not ending to allow HiThere to trigger.
I have below,
My issue is that the task HiThere NEVERS runs due to 'build' not returning. can you advise