Skip to content

Commit 3b9db33

Browse files
committed
style(repair): bold directories
1 parent 723104e commit 3b9db33

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

packages/ionic/src/commands/repair.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ For Cordova apps, it removes and recreates the generated native project and the
6868
const packageLockFile = path.resolve(project.directory, 'package-lock.json');
6969
const nodeModulesDir = path.resolve(project.directory, 'node_modules');
7070

71-
tasks.next(`Removing ${prettyPath(packageLockFile)}`);
71+
tasks.next(`Removing ${chalk.bold(prettyPath(packageLockFile))}`);
7272
await unlink(packageLockFile);
7373

74-
tasks.next(`Removing ${prettyPath(nodeModulesDir)}`);
74+
tasks.next(`Removing ${chalk.bold(prettyPath(nodeModulesDir))}`);
7575
await removeDirectory(nodeModulesDir);
7676

7777
tasks.end();
@@ -87,10 +87,10 @@ For Cordova apps, it removes and recreates the generated native project and the
8787
const platformsDir = path.resolve(cordova.root, 'platforms');
8888
const pluginsDir = path.resolve(cordova.root, 'plugins');
8989

90-
tasks.next(`Removing ${prettyPath(platformsDir)}`);
90+
tasks.next(`Removing ${chalk.bold(prettyPath(platformsDir))}`);
9191
await removeDirectory(platformsDir);
9292

93-
tasks.next(`Removing ${prettyPath(pluginsDir)}`);
93+
tasks.next(`Removing ${chalk.bold(prettyPath(pluginsDir))}`);
9494
await removeDirectory(pluginsDir);
9595

9696
tasks.end();

0 commit comments

Comments
 (0)