We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af33548 commit 5955988Copy full SHA for 5955988
2 files changed
lib/commands/package/update-dependencies.js
@@ -48,7 +48,7 @@ export default class extends Command {
48
"commit": process.cli.options.commit,
49
} );
50
51
- if ( res.ok && !res.data?.updates ) continue;
+ if ( res.ok && !res.data?.log ) continue;
52
53
if ( printNewLine ) {
54
console.log();
lib/commands/workspace/update-dependencies.js
@@ -90,7 +90,7 @@ export default class extends Command {
90
var hasErrors, printNewLine;
91
92
while ( ( res = await threads.getResult() ) ) {
93
94
95
const pkg = res.data.package;
96
0 commit comments