We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Although separation between stack and tasks is done well, logging for the stacks is not correctly reported.
stack
Steps
1.- write a gulpfile.js like so
gulpfile.js
var gulp = require('gulp-runtime').create(); gulp.task(':one', function (done) { setTimeout(done, 120); }); gulp.task('default', gulp.series('one', 'two'));
2.- run it
On the command line do node gulpfile.js
node gulpfile.js
Expected
Task logging to be Starting default:series(one, two)
Starting default:series(one, two)
Actual
Task logging is Start default:series(:one, :one)
Start default:series(:one, :one)
The text was updated successfully, but these errors were encountered:
fix: logging for task parameters
7273275
Depth was preventing to log the correct values fixes #25
Its hanging while running the tests.
Sorry, something went wrong.
stringparser
No branches or pull requests
Although separation between
stack
and tasks is done well, logging for the stacks is not correctly reported.Steps
1.- write a
gulpfile.js
like so2.- run it
On the command line do
node gulpfile.js
Expected
Task logging to be
Starting default:series(one, two)
Actual
Task logging is
Start default:series(:one, :one)
The text was updated successfully, but these errors were encountered: