diff --git a/gulpfile.js b/gulpfile.js index fcec7e265..4a4c29ec2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -61,7 +61,7 @@ gulp.task('services-only', async () => { }); /** - * Runs the e2e tests restoring the fixtures first. + * Runs the e2e tests, restoring the fixtures first. */ gulp.task('e2e', ['docker-rebuild'], async () => { await runSequenceP('e2e-only'); @@ -82,8 +82,7 @@ gulp.task('e2e-only', () => { gulp.task('clean', ['build-clean', 'nginx-clean']); /** - * Installs node dependencies in all project directories. - * See the 'install' task. + * Alias for the 'install' task. */ gulp.task('i', ['install']); @@ -389,7 +388,7 @@ gulp.task('docker-rebuild', async () => { /** * Does the minium effort to start the docker, if it doesn't exists calls - * the 'docker-run' task, if it is started does nothing. keep in mind that when + * the 'docker-run' task, if it is started does nothing. Keep in mind that when * you do not rebuild the docker you may be using an outdated version of it. * See the 'docker-rebuild' task for more info. */