diff --git a/package-lock.json b/package-lock.json index c52bb4f..20f5e51 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3975,7 +3975,7 @@ } }, "packages/create-mcfly": { - "version": "0.2.7", + "version": "0.2.8", "license": "MIT", "dependencies": { "consola": "^3.2.3", diff --git a/packages/create-mcfly/index.js b/packages/create-mcfly/index.js index f619d89..5f738bf 100755 --- a/packages/create-mcfly/index.js +++ b/packages/create-mcfly/index.js @@ -58,21 +58,25 @@ async function create() { } } - let nextActions = [`Go to your project by running: 'cd ${directory}'`]; + let nextActions = [ + `Go to your project by running ${colorize("yellow", `cd ${directory}`)}`, + ]; if (!installDeps) { - nextActions.push("Install the dependencies with: 'npm install'"); + nextActions.push( + `Install the dependencies with ${colorize("yellow", "npm install")}` + ); } nextActions = nextActions.concat([ - "To start the dev server, run: 'npm start'", - "Join us at https://ayco.io/gh/McFly", + `Start the dev server with ${colorize("yellow", "npm start")}`, + `Join us at ${colorize("blue", "https://ayco.io/gh/McFly")}`, ]); const result = `🎉 Your new ${colorize( "bold", "McFly" - )} app is now ready: ${directory}\n\nNext actions: ${nextActions + )} app is ready: ${directory}\n\nNext actions: ${nextActions .map((action, index) => `\n${++index}. ${action}`) .join("")}`; diff --git a/packages/create-mcfly/package.json b/packages/create-mcfly/package.json index fadcdc6..337b876 100644 --- a/packages/create-mcfly/package.json +++ b/packages/create-mcfly/package.json @@ -1,6 +1,6 @@ { "name": "create-mcfly", - "version": "0.2.7", + "version": "0.2.8", "bin": { "create-mcfly": "./index.js" },