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
When a task has a long intricate list of dependencies, it can be useful to support a wrapper task which acts as a single node to capture those dependencies:
[[task]]
name = 'commondeps'deps = ['src/app.js', 'src/other.js', 'src/files/*.js']
where various tasks can then depend on commondeps once to get that same list. Currently this pattern doesn't work but it should be able to properly carry the invalidation information through.
The text was updated successfully, but these errors were encountered:
When a task has a long intricate list of dependencies, it can be useful to support a wrapper task which acts as a single node to capture those dependencies:
where various tasks can then depend on
commondeps
once to get that same list. Currently this pattern doesn't work but it should be able to properly carry the invalidation information through.The text was updated successfully, but these errors were encountered: