My package.json and package-lock.json are being ignored by https://github.com/conventional-changelog/standard-version when trying to bump the version, the reason is that the full path of my package.json contains some words or matches with some specification in .gitignore file
let's say I have this
# ignore user files
/user/
*.user*
and my project is in the following path
c:/users/myuser/dev/myapp/
so this always evaluates to true:
if (dotgit.ignore(configPath)) return
I have posted something related in the PR #230
My package.json and package-lock.json are being ignored by https://github.com/conventional-changelog/standard-version when trying to bump the version, the reason is that the full path of my package.json contains some words or matches with some specification in
.gitignorefilelet's say I have this
and my project is in the following path
so this always evaluates to true:
I have posted something related in the PR #230