You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
task("foo", function() {});
group("assets", function() {
# some group prerequisite
task('foo', function() {});
# Tasks are first looked up in the current group, so the group's "foo" task is invoked:
task("dump", array('foo'), function() {
# ...
});
});
The text was updated successfully, but these errors were encountered:
👍 this Feature to vote for it.
I'm not entirely sold on this, because you can already namespace tasks simply by putting a ":" in the name,
for example
assets:dump
.Syntax could look like this:
or like this:
The text was updated successfully, but these errors were encountered: