File tree Expand file tree Collapse file tree
packages/ionic/src/commands Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ( ) ;
You can’t perform that action at this time.
0 commit comments