Skip to content

Commit

Permalink
fix(Generator): make correct defaults and complete signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
RWOverdijk committed Oct 10, 2017
1 parent 89b421c commit c5ab300
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ class Generator {
return {steps};
}

complete() {
return Promise.resolve();
complete(stream) {
return Promise.resolve(stream);
}

defaults() {
static defaults() {
return {};
}

Expand Down

0 comments on commit c5ab300

Please sign in to comment.