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
@@ -143,8 +144,12 @@ class Builder extends EventEmitter {
143
144
//
144
145
// 1. build up a promise chain, which represents the complete build
145
146
pipeline=pipeline.then(async()=>{
147
+
if(this._cancelationRequest){
148
+
this._cancelationRequest.throwIfRequested();
149
+
}else{
150
+
thrownewBuilderError('Broccoli: The current build is missing a CancelationRequest, this is unexpected please report an issue: https://github.com/broccolijs/broccoli/issues/new ');
151
+
}
146
152
// 3. begin next build step
147
-
this._cancelationRequest.throwIfRequested();
148
153
this.emit('beginNode',nw);
149
154
try{
150
155
awaitnw.build();
@@ -166,17 +171,35 @@ class Builder extends EventEmitter {
0 commit comments