Skip to content

Commit c450122

Browse files
committedSep 19, 2017
Changelog, cleanup for orchestration events change
1 parent 2155560 commit c450122

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and 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

‎index.js

+2-2
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)
Please sign in to comment.