@@ -91,22 +91,22 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
91
91
console . log ( 'Success! Created ' + appName + ' at ' + appPath + '.' ) ;
92
92
console . log ( 'Inside that directory, you can run several commands:' ) ;
93
93
console . log ( ) ;
94
- console . log ( chalk . cyan ( 'npm start' ) ) ;
95
- console . log ( ' Starts the development server.' ) ;
94
+ console . log ( chalk . cyan ( ' npm start' ) ) ;
95
+ console . log ( ' Starts the development server.' ) ;
96
96
console . log ( ) ;
97
- console . log ( chalk . cyan ( 'npm test ' ) ) ;
98
- console . log ( ' Starts the test runner .' ) ;
97
+ console . log ( chalk . cyan ( ' npm run build ' ) ) ;
98
+ console . log ( ' Bundles the app into static files for production .' ) ;
99
99
console . log ( ) ;
100
- console . log ( chalk . cyan ( 'npm run build ' ) ) ;
101
- console . log ( ' Bundles the app into static files for production .' ) ;
100
+ console . log ( chalk . cyan ( ' npm test ' ) ) ;
101
+ console . log ( ' Starts the test runner .' ) ;
102
102
console . log ( ) ;
103
- console . log ( chalk . cyan ( 'npm run eject' ) ) ;
104
- console . log ( ' Removes this tool and copies build dependencies, configuration files' ) ;
105
- console . log ( ' and scripts into the app directory. If you do this, you can’t go back!' ) ;
103
+ console . log ( chalk . cyan ( ' npm run eject' ) ) ;
104
+ console . log ( ' Removes this tool and copies build dependencies, configuration files' ) ;
105
+ console . log ( ' and scripts into the app directory. If you do this, you can’t go back!' ) ;
106
106
console . log ( ) ;
107
107
console . log ( 'We suggest that you begin by typing:' ) ;
108
108
console . log ( ) ;
109
- console . log ( ' cd' , cdpath ) ;
109
+ console . log ( chalk . cyan ( ' cd' ) , cdpath ) ;
110
110
console . log ( ' ' + chalk . cyan ( 'npm start' ) ) ;
111
111
if ( readmeExists ) {
112
112
console . log ( ) ;
0 commit comments