File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2.2.0] ( https://github.com/OverZealous/run-sequence/releases/tag/v2.2.0 ) - 2017-09-19
8
+
9
+ ### Changed
10
+
11
+ - Fixed handling of ` orchestration aborted ` errors, thanks to [ @memoryhole ] ( https://github.com/memoryhole )
12
+
7
13
## [ 2.1.0] ( https://github.com/OverZealous/run-sequence/releases/tag/v2.1.0 ) - 2017-07-24
8
14
9
15
### Changed
Original file line number Diff line number Diff line change @@ -104,14 +104,14 @@ function runSequence(gulp) {
104
104
105
105
function onGulpError ( e ) {
106
106
// In the case that you call gulp.stop after a successful run,
107
- // we will not recieve a task_err or task_stop event. This callback
107
+ // we will not receive a task_err or task_stop event. This callback
108
108
// will finish the run sequence execution in case of an 'orchestration aborted'
109
109
// even coming from gulp's global error handler. That event is fired in when
110
110
// gulp.stop is called.
111
111
if ( e . message === 'orchestration aborted' ) {
112
112
finish ( e ) ;
113
113
}
114
- } ;
114
+ }
115
115
116
116
function runNextSet ( ) {
117
117
if ( taskSets . length ) {
You can’t perform that action at this time.
0 commit comments