Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Error in Readme: npx git-cz installs wrong package #564

Closed
EricLambrecht opened this issue Sep 11, 2018 · 4 comments
Closed

Error in Readme: npx git-cz installs wrong package #564

EricLambrecht opened this issue Sep 11, 2018 · 4 comments

Comments

@EricLambrecht
Copy link

EricLambrecht commented Sep 11, 2018

In the Readme it says

Alternatively, if you are using NPM 5.2+ you can use npx instead of installing globally:
npx git-cz

This will install this package though (streamich/git-cz).
Is this intended? The package doesn't seem related to the official commitizen team.

Note: Commitizen will still work, but it will use the streamich/git-cz emoji adapter.

@EricLambrecht EricLambrecht changed the title npx git-cz installs wrong package Error in Readme: npx git-cz installs wrong package Sep 11, 2018
@jimthedev
Copy link
Member

Yeah, you are correct. Looks like we will need to figure out how to work with npx since our repo, package and binary names are all different 🤕

@andrico1234
Copy link

andrico1234 commented Oct 9, 2018

@EricLambrecht @jimthedev

I've found a workaround to this issue.

I don't like installing global packages, so in my package.json I've got everything set up like this.

{
  "name": "demo",
  "version": "0.1.0",
  "scripts": {
    "commit": "yarn git-cz",
  },
  "devDependencies": {
    "commitizen": "^3.0.2",
    "conventional-changelog-cli": "^2.0.5",
    "cz-conventional-changelog": "^2.1.0",
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
}

Running yarn commit works with the correct version of git-cz. This is because of the script we're running in here: commit: yarn git-cz. We're not using npx so there's no possibility of pulling in the incorrect git-cz module.

My suggestion would be to let people know in the README.md that there is confusion between two versions of git-cz. This left me stumped for the most part of the day, and knowing that commitizen has it's own internal git-cz script separate streamich's one, would've saved me a shit-ton of headscratching

@fdlk
Copy link
Contributor

fdlk commented Feb 21, 2019

This just cost me two hours of bewilderment. Please fix your docs.

@jimthedev
Copy link
Member

jimthedev commented Feb 21, 2019

@fdlk Please put in a PR if it is this frustrating to help anyone else going forward. You can literally do this in the github interface by editing Readme.md.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants