Commit cc4aa7be authored by Dan Abramov's avatar Dan Abramov
Browse files

Tweak init script output

parent d279aa03
No related merge requests found
Showing with 10 additions and 10 deletions
+10 -10
......@@ -91,22 +91,22 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
console.log('Success! Created ' + appName + ' at ' + appPath + '.');
console.log('Inside that directory, you can run several commands:');
console.log();
console.log(chalk.cyan('npm start'));
console.log(' Starts the development server.');
console.log(chalk.cyan(' npm start'));
console.log(' Starts the development server.');
console.log();
console.log(chalk.cyan('npm test'));
console.log(' Starts the test runner.');
console.log(chalk.cyan(' npm run build'));
console.log(' Bundles the app into static files for production.');
console.log();
console.log(chalk.cyan('npm run build'));
console.log(' Bundles the app into static files for production.');
console.log(chalk.cyan(' npm test'));
console.log(' Starts the test runner.');
console.log();
console.log(chalk.cyan('npm run eject'));
console.log(' Removes this tool and copies build dependencies, configuration files');
console.log(' and scripts into the app directory. If you do this, you can’t go back!');
console.log(chalk.cyan(' npm run eject'));
console.log(' Removes this tool and copies build dependencies, configuration files');
console.log(' and scripts into the app directory. If you do this, you can’t go back!');
console.log();
console.log('We suggest that you begin by typing:');
console.log();
console.log(' cd', cdpath);
console.log(chalk.cyan(' cd'), cdpath);
console.log(' ' + chalk.cyan('npm start'));
if (readmeExists) {
console.log();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment