First of all: do check the Gulp documentation on this: https://gulpjs.com/docs/en/getting-started/async-completion#using-async-await
I had the following gulpfile.js
:
# file gulpfile.js
function build() {
return series(
clean,
parallel(
images,
tracker,
fonts
),
clean_busters
);
}
exports.build = build;
When running gulp build
I got the following errors:
$ gulp build
[11:17:33] Using gulpfile ./gulpfile.js
[11:17:46] The following tasks did not complete: build
[11:17:46] Did you forget to signal async completion?
I fixed it by making the build()
function async: async build()
.
Then my gulpfile.js
looked like the following (note the extra parentheses at the end!)
# file gulpfile.js
async function build() {
return series(
clean,
parallel(
images,
tracker,
fonts
),
clean_busters
)();
}
exports.build = build;
Als ik een factuur binnenkrijg, wil ik dat deze netjes gearchiveerd wordt in de juiste directory én dat de factuur verstuurd wordt naar het speciale e-mailadres van mijn boekhouding zodat hij daar verwerkt kan worden.
Om dat handmatig te doen ben je niet lang bezig en het is ook niet moeilijk Maar het wordt wél vervelend om het steeds maar weer opnieuw te doen. Steeds weer dezelfde handelingen. Continue reading