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
dir
src
Having both dir and src is confusing. Only src should be needed and support globbing patterns as well.
Actual
task css { dir "css/*.css" | src | cssmin | dest "output/combined.css" }
Expected
task css { src "css/*.css" | cssmin | dest "output/combined.css" }
The text was updated successfully, but these errors were encountered:
Ok, how about getting rid of src then? I can update it to call it under the hood.
Sorry, something went wrong.
No branches or pull requests
Having both
dir
andsrc
is confusing. Onlysrc
should be needed and support globbing patterns as well.Actual
Expected
The text was updated successfully, but these errors were encountered: