Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: netlify/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.29.4
Choose a base ref
...
head repository: netlify/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.29.5
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on May 11, 2021

  1. 1
    Copy the full SHA
    b725f9c View commit details
  2. chore: release 3.29.5 (#2362)

    Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
    token-generator-app[bot] authored May 11, 2021
    1
    Copy the full SHA
    7b2ec05 View commit details
Showing with 43 additions and 17 deletions.
  1. +7 −0 CHANGELOG.md
  2. +2 −2 npm-shrinkwrap.json
  3. +1 −1 package.json
  4. +33 −14 scripts/postinstall.js
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [3.29.5](https://www.github.com/netlify/cli/compare/v3.29.4...v3.29.5) (2021-05-11)


### Bug Fixes

* **postinstall:** wrap chalk require ([#2330](https://www.github.com/netlify/cli/issues/2330)) ([b725f9c](https://www.github.com/netlify/cli/commit/b725f9cc4f128c69f50d4e09785a0353a1824c78))

### [3.29.4](https://www.github.com/netlify/cli/compare/v3.29.3...v3.29.4) (2021-05-11)


4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "netlify-cli",
"description": "Netlify command line tool",
"version": "3.29.4",
"version": "3.29.5",
"author": "Netlify Inc.",
"contributors": [
"Mathias Biilmann <matt@netlify.com> (https://twitter.com/biilmann)",
47 changes: 33 additions & 14 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
const chalk = require('chalk')
const id = (message) => message

console.log('')
console.log(chalk.greenBright.bold.underline(`Success! Netlify CLI has been installed!`))
console.log('')
console.log('Your device is now configured to use Netlify CLI to deploy and manage your Netlify sites.')
console.log('')
console.log('Next steps:')
console.log('')
console.log(` ${chalk.cyanBright.bold('netlify init')} Connect or create a Netlify site from current directory`)
console.log(` ${chalk.cyanBright.bold('netlify deploy')} Deploy the latest changes to your Netlify site`)
console.log('')
console.log(`For more information on the CLI run ${chalk.cyanBright.bold('netlify help')}`)
console.log(`Or visit the docs at ${chalk.cyanBright.bold('https://cli.netlify.com')}`)
console.log('')
const format = (message, styles) => {
let func = id
try {
// this fails sometimes on outdated npm versions
// eslint-disable-next-line node/global-require
func = require('chalk')
styles.forEach((style) => {
func = func[style]
})
} catch (_) {}
return func(message)
}

const postInstall = () => {
console.log('')
console.log(format('Success! Netlify CLI has been installed!', ['greenBright', 'bold', 'underline']))
console.log('')
console.log('Your device is now configured to use Netlify CLI to deploy and manage your Netlify sites.')
console.log('')
console.log('Next steps:')
console.log('')
console.log(
` ${format('netlify init', ['cyanBright', 'bold'])} Connect or create a Netlify site from current directory`,
)
console.log(` ${format('netlify deploy', ['cyanBright', 'bold'])} Deploy the latest changes to your Netlify site`)
console.log('')
console.log(`For more information on the CLI run ${format('netlify help', ['cyanBright', 'bold'])}`)
console.log(`Or visit the docs at ${format('https://cli.netlify.com', ['cyanBright', 'bold'])}`)
console.log('')
}

postInstall()