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: v3.0.5
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: v3.0.6
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Dec 14, 2018

  1. docs(README): Added eslint adapter (#598)

    I added the `cz-adapter-eslint` to the list of adapters.
    Berkmann18 authored and LinusU committed Dec 14, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    3db1fba View commit details

Commits on Jan 8, 2019

  1. docs(readme): fix markdown formatting typo (#601)

    fix markdown formatting typo
    revelt authored and LinusU committed Jan 8, 2019
    Copy the full SHA
    c3a1e0f View commit details

Commits on Feb 21, 2019

  1. fix(deps): update dependency find-node-modules to v2 (#611)

    This PR contains the following updates:
    
    | Package | Type | Update | Change | References |
    |---|---|---|---|---|
    | find-node-modules | dependencies | major | `1.0.4` -> `2.0.0` | [source](https://togithub.com/callumacrae/find-node-modules) |
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>callumacrae/find-node-modules</summary>
    
    ### [`v2.0.0`](https://togithub.com/callumacrae/find-node-modules/compare/v1.0.4...v2.0.0)
    
    [Compare Source](https://togithub.com/callumacrae/find-node-modules/compare/v1.0.4...v2.0.0)
    
    </details>
    
    ---
    
    ### Renovate configuration
    
    :date: **Schedule**: At any time (no schedule defined).
    
    :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
    
    :recycle: **Rebasing**: Whenever PR becomes conflicted, or if you modify the PR title to begin with "`rebase!`".
    
    :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
    
    ---
    
     - [ ] <!-- renovate-rebase -->If you want to rebase/retry this PR, check this box
    
    ---
    
    This PR has been generated by [Renovate Bot](https://togithub.com/marketplace/renovate). View repository job log [here](https://renovatebot.com/dashboard#commitizen/cz-cli).
    renovate[bot] authored and jimthedev committed Feb 21, 2019
    Copy the full SHA
    8fbf371 View commit details
Showing with 299 additions and 386 deletions.
  1. +2 −1 README.md
  2. +296 −384 package-lock.json
  3. +1 −1 package.json
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -124,7 +124,7 @@ On **NPM 5.2+** you can [use `npx`](https://medium.com/@maybekatz/introducing-np
npx commitizen init cz-conventional-changelog --save-dev --save-exact
```

For **previous versions of NPM (< 5.2) ** you can execute `./node_modules/.bin/commitizen` or `./node_modules/.bin/git-cz` in order to actually use the commands.
For **previous versions of NPM (< 5.2)** you can execute `./node_modules/.bin/commitizen` or `./node_modules/.bin/git-cz` in order to actually use the commands.

You can then initialize the conventional changelog adapter using: `./node_modules/.bin/commitizen init cz-conventional-changelog --save-dev --save-exact`

@@ -234,6 +234,7 @@ We know that every project and build process has different requirements so we've
- [commitlint](https://github.com/marionebl/commitlint)
- [vscode-commitizen](https://github.com/KnisterPeter/vscode-commitizen)
- [cz-emoji](https://github.com/ngryman/cz-emoji)
- [cz-adapter-eslint](https://www.npmjs.com/package/cz-adapter-eslint)

To create an adapter, just fork one of these great adapters and modify it to suit your needs. We pass you an instance of [Inquirer.js](https://github.com/SBoudrias/Inquirer.js/) but you can capture input using whatever means necessary. Just call the `commit` callback with a string and we'll be happy. Publish it to npm, and you'll be all set!

Loading