gruntjs / gruntjs/grunt

Implement Task Dependencies

Open
#968 12 comments 0 reactions 0 assignees View on GitHub
Component: tasks
Dominant language
JavaScript
Stars
12.2k
Forks
1.5k
PR merge metrics
No merged PRs in 30d

Description

in rake you can:

``` ruby
task :foo => [:bar, :baz] do
# do stuff after :bar and :baz
end
```

In grunt you can:

``` js
grunt.registerTask('foo', ['bar', 'baz']);
```

Would love to finish that off with something like:

``` js
grunt.registerTask('foo', ['bar', 'baz'], function() {
// do stuff after 'bar' and 'baz'
});
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.