Skip to content

Commit

Permalink
fix: filter queued packages on generateNotes stage
Browse files Browse the repository at this point in the history
closes #6
  • Loading branch information
antongolub committed Jun 5, 2020
1 parent 663b0e6 commit e0625ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/createInlinePluginCreator.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function createInlinePluginCreator(packages, multiContext) {
pkg._nextRelease = context.nextRelease;

// Wait until all todo packages are ready to generate notes.
await waitFor("_nextRelease");
await waitFor("_nextRelease", (p) => p._nextType);

if (todo()[0] !== pkg) {
await pkg._readyForRelease;
Expand Down

0 comments on commit e0625ce

Please sign in to comment.