We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 911c229 commit a174575Copy full SHA for a174575
1 file changed
scripts/update.mjs
@@ -27,16 +27,13 @@ async function main() {
27
logger.log('\n🔨 Monorepo Dependency Update\n')
28
}
29
30
- // Build taze command with appropriate flags for monorepo.
31
- const tazeArgs = ['exec', 'taze', '-r']
+ // Build taze command with appropriate flags for monorepo
+ const tazeArgs = ['exec', 'taze', '-r', '-w']
32
33
- if (apply) {
34
- tazeArgs.push('-w')
35
- if (!quiet) {
+ if (!quiet) {
+ if (apply) {
36
logger.progress('Updating dependencies across monorepo...')
37
- }
38
- } else {
39
+ } else {
40
logger.progress('Checking for updates across monorepo...')
41
42
0 commit comments