Skip to content

Commit

Permalink
chore: fix flicker placeholder for dep bar (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
a1mersnow committed Nov 28, 2023
1 parent 250c75f commit 97b2a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/check/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export async function check(options: CheckOptions) {
},
beforePackageStart(pkg) {
packagesBar?.increment(0, { name: c.cyan(pkg.name) })
depBar?.start(pkg.deps.length, 0, { type: c.green('dep') })
depBar?.start(pkg.deps.length, 0, { type: c.green('dep'), name: '' })
},
beforePackageWrite() {
// disbale auto write
Expand Down

0 comments on commit 97b2a4a

Please sign in to comment.