- Add possibility to stop release in the middle
The sg_release task is now a multitask. This means you need to provide a target in its config for it to do anything.
Before:
'sg-release': {
options: { ... }
}
After:
'sg_release': {
options: { ... }
myTarget: {}
}
(See gruntjs/grunt#279)