File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 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.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
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+
713## [ 2.1.0] ( https://github.com/OverZealous/run-sequence/releases/tag/v2.1.0 ) - 2017-07-24
814
915### Changed
Original file line number Diff line number Diff line change @@ -104,14 +104,14 @@ function runSequence(gulp) {
104104
105105 function onGulpError ( e ) {
106106 // 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
108108 // will finish the run sequence execution in case of an 'orchestration aborted'
109109 // even coming from gulp's global error handler. That event is fired in when
110110 // gulp.stop is called.
111111 if ( e . message === 'orchestration aborted' ) {
112112 finish ( e ) ;
113113 }
114- } ;
114+ }
115115
116116 function runNextSet ( ) {
117117 if ( taskSets . length ) {
You can’t perform that action at this time.
0 commit comments