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.1.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.0
Choose a head ref
  • 2 commits
  • 13 files changed
  • 2 contributors

Commits on Jul 17, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    crazy-max CrazyMax
    Copy the full SHA
    ad6f14c View commit details

Commits on Jul 18, 2019

  1. fix(node): remove node 6 and 8 support (#649)

    This removes node 6 and 8 support. This is a free project and our builds are getting very long so we
    have to be a bit careful about what versions we test on. To be clear, this still works on Node 6 and
    8 for now but we won't be maintaining that guarantee into the future so please work towards
    updating. This also removes eslint, likely in favor of prettier at some future date.
    
    BREAKING CHANGE: Removal of two major node versions, 6 and 8 from testing scheme
    jimthedev authored Jul 18, 2019
    Copy the full SHA
    8931c6b View commit details
Showing with 71 additions and 1,016 deletions.
  1. +0 −1 .travis.yml
  2. +5 −0 README.md
  3. +2 −4 jobs/build.yml
  4. +60 −977 package-lock.json
  5. +4 −11 package.json
  6. +0 −3 test/tests/adapter.js
  7. +0 −2 test/tests/cli.js
  8. +0 −2 test/tests/commit.js
  9. +0 −2 test/tests/configLoader.js
  10. +0 −2 test/tests/init.js
  11. +0 −2 test/tests/parsers.js
  12. +0 −3 test/tests/staging.js
  13. +0 −7 test/tests/util.js
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,6 @@ before_install:
before_script:
- git version
script:
- npm run lint
- npm run test
- npm run check-coverage
after_success:
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,6 +7,11 @@ When you commit with Commitizen, you'll be prompted to fill out any required com

## Installing the command line tool

Commitizen is currently tested against
node 10 and 12 although it may work in
older node. You should also have npm 6
or greater.

Installation is as simple as running the following command (if you see `EACCES` error, reading [fixing npm permissions](https://docs.npmjs.com/getting-started/fixing-npm-permissions) may help):

```
6 changes: 2 additions & 4 deletions jobs/build.yml
Original file line number Diff line number Diff line change
@@ -11,12 +11,10 @@ jobs:
strategy:
maxParallel: 3
matrix:
node-12:
node_version: ^12.6.0
node-10:
node_version: ^10.10.0
node-8:
node_version: ^8.12.0
node-6:
node_version: ^6.14.4
steps:
- task: NodeTool@0
displayName: " Install Node.js"
Loading