@@ -96,15 +96,24 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
96
96
console . log ( 'Success! Created ' + appName + ' at ' + appPath + '.' ) ;
97
97
console . log ( 'Inside that directory, you can run several commands:' ) ;
98
98
console . log ( ) ;
99
- console . log ( ' * npm start: Starts the development server.' ) ;
100
- console . log ( ' * npm test: Starts the test runner.' ) ;
101
- console . log ( ' * npm run build: Bundles the app into static files for production.' ) ;
102
- console . log ( ' * npm run eject: Removes this tool. If you do this, you can’t go back!' ) ;
99
+ console . log ( chalk . cyan ( 'npm start' ) ) ;
100
+ console . log ( ' Starts the development server.' ) ;
101
+ console . log ( ) ;
102
+ console . log ( chalk . cyan ( 'npm test' ) ) ;
103
+ console . log ( ' Starts the test runner.' ) ;
104
+ console . log ( ) ;
105
+ console . log ( chalk . cyan ( 'npm run build' ) ) ;
106
+ console . log ( ' Bundles the app into static files for production.' ) ;
107
+ console . log ( ) ;
108
+ console . log ( chalk . cyan ( 'npm run eject' ) ) ;
109
+ console . log ( ' Removes this tool and copies build dependencies, configs,' ) ;
110
+ console . log ( ' and scripts into the app directory.' ) ;
111
+ console . log ( ' If you do this, you can’t go back!' ) ;
103
112
console . log ( ) ;
104
113
console . log ( 'We suggest that you begin by typing:' ) ;
105
114
console . log ( ) ;
106
115
console . log ( ' cd' , cdpath ) ;
107
- console . log ( ' npm start' ) ;
116
+ console . log ( ' ' + chalk . cyan ( ' npm start') ) ;
108
117
if ( readmeExists ) {
109
118
console . log ( ) ;
110
119
console . log ( chalk . yellow ( 'You had a `README.md` file, we renamed it to `README.old.md`' ) ) ;
0 commit comments