-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
README.md Document error, miss 'build' task #2099
Closed
Roamin opened this issue
Jan 18, 2018
· 1 comment
· May be fixed by ajesse11x/PowerShell#3, Matthelonianxl/flight-manual.atom.io#2, raindigi/cloudcannon-suite#5, cdcc1969/etherwallet#7 or baophucct/PowerShell#3
Closed
README.md Document error, miss 'build' task #2099
Roamin opened this issue
Jan 18, 2018
· 1 comment
· May be fixed by ajesse11x/PowerShell#3, Matthelonianxl/flight-manual.atom.io#2, raindigi/cloudcannon-suite#5, cdcc1969/etherwallet#7 or baophucct/PowerShell#3
Comments
Instead of: const clean = gulp.series(clean, gulp.parallel(styles, scripts));
gulp.task('clean', clean); It should be: const build = gulp.series(clean, gulp.parallel(styles, scripts));
gulp.task('build', build); Thanks for reporting the issue, I'll send a PR. |
demurgos
added a commit
to demurgos/gulp
that referenced
this issue
Jan 18, 2018
The task `clean` was defined twice and the `build` task was missing in the ES2015 example. This commit renames the second `clean` task to `build` to match the ES5 example. Closes gulpjs#2099
phated
pushed a commit
that referenced
this issue
Jan 18, 2018
This was referenced Mar 8, 2021
Open
This was referenced Mar 15, 2021
Closed
This was referenced May 18, 2024
This was referenced May 26, 2024
This was referenced Jun 2, 2024
This was referenced Jun 27, 2024
This was referenced Jul 4, 2024
This was referenced Jul 12, 2024
This was referenced Jul 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What were you expecting to happen?
There is a
build
taskWhat actually happened?
Cann’t find it. (The sample written in ES2015)
What version of gulp are you using?
4.0
What versions of npm and node are you using?
It does'nt matter
The text was updated successfully, but these errors were encountered: