We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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" }