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
gulp-hub generates non-unique task names on UNIX, causing only the last task to run:
gulp-hub
[17:09:44] Loading src/main/static/pages/product/small/gulpfile.js [17:09:44] Loading src/main/static/pages/product/termsConditions/small/gulpfile.js [17:09:44] Loading src/main/static/pages/searchfiles/results/small/gulpfile.js [17:09:44] Loading src/main/static/pages/shopping-cart/small/gulpfile.js ... [gulp] Starting 'small-default'... [gulp] Finished 'small-default' after 3.95 μs [gulp] Starting 'small-default'... [gulp] Finished 'small-default' after 5.13 μs [gulp] Starting 'small-default'... [gulp] Finished 'small-default' after 6.32 μs [gulp] Starting 'small-default'... [gulp] Finished 'small-default' after 5.13 μs
... but works correctly on Windows:
[17:07:37] Loading src/main/static/pages/product/small/gulpfile.js [17:07:37] Loading src/main/static/pages/product/termsConditions/small/gulpfile.js [17:07:37] Loading src/main/static/pages/searchfiles/results/small/gulpfile.js [17:07:37] Loading src/main/static/pages/shopping-cart/small/gulpfile.js ... [gulp] Starting 'src/main/static/pages/product/small-default'... [gulp] Finished 'src/main/static/pages/product/small-default' after 3.55 μs [gulp] Starting 'src/main/static/pages/product/termsConditions/small-default'... [gulp] Finished 'src/main/static/pages/product/termsConditions/small-default' after 5.13 μs [gulp] Starting 'src/main/static/pages/searchfiles/results/small-default'... [gulp] Finished 'src/main/static/pages/searchfiles/results/small-default' after 7.5 μs [gulp] Starting 'src/main/static/pages/shopping-cart/small-default'... [gulp] Finished 'src/main/static/pages/shopping-cart/small-default' after 5.13 μs
The text was updated successfully, but these errors were encountered:
Rewrite unique subtask name prefixes to be the task's gulpfile's rela…
a8cb26e
…tive path. Fixes issue frankwallis#4.
No branches or pull requests
gulp-hub
generates non-unique task names on UNIX, causing only the last task to run:... but works correctly on Windows:
The text was updated successfully, but these errors were encountered: