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.2
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.3
Choose a head ref
  • 2 commits
  • 9 files changed
  • 2 contributors

Commits on Jul 19, 2019

  1. fix(deps): update dependency cz-conventional-changelog to v3 (#654)

    * fix(deps): update dependency cz-conventional-changelog to v3
    
    * fix: resolve test with latest cz-conventional-changelog
    renovate[bot] authored and jimthedev committed Jul 19, 2019
    Copy the full SHA
    2a1a111 View commit details

Commits on Jul 20, 2019

  1. fix: bump tests to release (#656)

    * fix: bump tests to release
    
    * fix: ignore osome files for coverage
    jimthedev authored Jul 20, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    270cb5c View commit details
Showing with 173 additions and 35 deletions.
  1. +0 −1 .travis.yml
  2. +138 −32 package-lock.json
  3. +1 −1 package.json
  4. +1 −0 src/commitizen.js
  5. +6 −0 src/commitizen/init.js
  6. +1 −0 src/configLoader.js
  7. +1 −0 src/git.js
  8. +1 −1 test/tests/adapter.js
  9. +24 −0 test/tests/init.js
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,6 @@ before_script:
- git version
script:
- npm run test
- npm run check-coverage
after_success:
- npm run report-coverage
- npm run semantic-release
170 changes: 138 additions & 32 deletions package-lock.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
@@ -72,7 +72,7 @@
},
"dependencies": {
"cachedir": "2.2.0",
"cz-conventional-changelog": "2.1.0",
"cz-conventional-changelog": "3.0.1",
"dedent": "0.7.0",
"detect-indent": "6.0.0",
"find-node-modules": "2.0.0",
1 change: 1 addition & 0 deletions src/commitizen.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* istanbul ignore file */
import * as adapter from './commitizen/adapter';
import * as cache from './commitizen/cache';
import commit from './commitizen/commit';
Loading