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: commitizen/cz-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.3
Choose a base ref
...
head repository: commitizen/cz-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.4
Choose a head ref
  • 7 commits
  • 5 files changed
  • 6 contributors

Commits on Aug 7, 2019

  1. docs: fix typo in code inside README.md (#662)

    Missing comma in code snippet inside 'Commitizen for multi-repo projects' section
    guilhermejcgois authored and jimthedev committed Aug 7, 2019
    Copy the full SHA
    a472e52 View commit details

Commits on Aug 14, 2019

  1. docs: Add short circuit to hook example (#665)

    The prepare-commit-msg git hook examples (bash & husky) assume /dev/tty is always true
    This change fails silently in case /dev/tty is false.
    
    See #634
    eladchen authored and jimthedev committed Aug 14, 2019
    Copy the full SHA
    8950d5c View commit details

Commits on Apr 6, 2020

  1. chore(deps): bump minimist from 1.2.0 to 1.2.3 (#721)

    Bumps [minimist](https://github.com/substack/minimist) from 1.2.0 to 1.2.3.
    - [Release notes](https://github.com/substack/minimist/releases)
    - [Commits](https://github.com/substack/minimist/compare/1.2.0...1.2.3)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 6, 2020
    Copy the full SHA
    f322e2c View commit details
  2. chore(deps): update dependency nyc to v15 (#704)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Apr 6, 2020
    Copy the full SHA
    bd5a0ba View commit details

Commits on Apr 7, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7642f05 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9ae386c View commit details
  3. Copy the full SHA
    607d514 View commit details
Showing with 14,771 additions and 14,084 deletions.
  1. +3 −4 README.md
  2. +2 −2 azure-pipelines.yml
  3. +13 −0 babel.config.js
  4. +14,750 −14,061 package-lock.json
  5. +3 −17 package.json
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -142,8 +142,7 @@ Update `.git/hooks/prepare-commit-msg` with the following code:

```
#!/bin/bash
exec < /dev/tty
node_modules/.bin/git-cz --hook
exec < /dev/tty && node_modules/.bin/git-cz --hook || true
```

##### Husky
@@ -152,7 +151,7 @@ For `husky` users, add the following configuration to the project's `package.jso
```
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
}
}
```
@@ -233,7 +232,7 @@ bootstrap({
{
"name": "company-commit",
"bin": "./my-cli.js"
"bin": "./my-cli.js",
"dependencies": {
"commitizen": "^2.7.6",
"cz-conventional-changelog": "^1.1.5",
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
parameters:
name: macOS
pool:
vmImage: 'macOS-10.13'
vmImage: 'macOS-latest'

- template: jobs/build.yml # Template reference
parameters:
@@ -20,5 +20,5 @@ jobs:
parameters:
name: Windows
pool:
vmImage: 'vs2017-win2016'
vmImage: 'windows-latest'
sign: true # Extra step on Windows only
13 changes: 13 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
presets: [
[
"@babel/preset-env",
{
targets: {
node: "10",
},
},
],
],
plugins: ["@babel/plugin-proposal-object-rest-spread", "istanbul"],
};
Loading