Skip to content

Commit e2ece20

Browse files
committed
chore(cli): tweak log of cleaning cache
1 parent 1d3637f commit e2ece20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/@vuepress/cli/src/commands/build/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const build = async (
4848

4949
// clean cache
5050
if (commandOptions.cleanCache === true) {
51-
logger.info('cleaning cache')
51+
logger.info('Cleaning cache...')
5252
await fs.remove(app.dir.cache())
5353
}
5454

packages/@vuepress/cli/src/commands/dev/dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const dev = async (
5353

5454
// clean cache
5555
if (commandOptions.cleanCache === true) {
56-
logger.info('cleaning cache')
56+
logger.info('Cleaning cache...')
5757
await fs.remove(app.dir.cache())
5858
}
5959

0 commit comments

Comments
 (0)