Skip to content

Commit e0625ce

Browse files
committed
fix: filter queued packages on generateNotes stage
closes #6
1 parent 663b0e6 commit e0625ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/createInlinePluginCreator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function createInlinePluginCreator(packages, multiContext) {
179179
pkg._nextRelease = context.nextRelease;
180180

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

184184
if (todo()[0] !== pkg) {
185185
await pkg._readyForRelease;

0 commit comments

Comments
 (0)