UNPKG

757 BJavaScriptView Raw
1const chalk = require('chalk')
2
3console.log('')
4console.log(chalk.greenBright.bold.underline(`Success! Netlify CLI has been installed!`))
5console.log('')
6console.log('Your device is now configured to use Netlify CLI to deploy and manage your Netlify sites.')
7console.log('')
8console.log('Next steps:')
9console.log('')
10console.log(` ${chalk.cyanBright.bold('netlify init')} Connect or create a Netlify site from current directory`)
11console.log(` ${chalk.cyanBright.bold('netlify deploy')} Deploy the latest changes to your Netlify site`)
12console.log('')
13console.log(`For more information on the CLI run ${chalk.cyanBright.bold('netlify help')}`)
14console.log(`Or visit the docs at ${chalk.cyanBright.bold('https://cli.netlify.com')}`)
15console.log('')