gitextract_6nfb7b3g/ ├── .editorconfig ├── .eslintrc ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── ask-a-question.md │ │ └── bug-report.md │ └── workflows/ │ ├── ci.yaml │ └── release-please.yml ├── .gitignore ├── .versionrc ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bin/ │ └── cli.js ├── command.js ├── defaults.js ├── index.js ├── lib/ │ ├── checkpoint.js │ ├── configuration.js │ ├── format-commit-message.js │ ├── latest-semver-tag.js │ ├── lifecycles/ │ │ ├── bump.js │ │ ├── changelog.js │ │ ├── commit.js │ │ └── tag.js │ ├── preset-loader.js │ ├── print-error.js │ ├── run-exec.js │ ├── run-execFile.js │ ├── run-lifecycle-script.js │ ├── updaters/ │ │ ├── index.js │ │ └── types/ │ │ ├── json.js │ │ └── plain-text.js │ └── write-file.js ├── package.json ├── renovate.json └── test/ ├── config-files.spec.js ├── core.spec.js ├── git.spec.js ├── mocks/ │ ├── VERSION-1.0.0.txt │ ├── VERSION-6.3.1.txt │ ├── manifest-6.3.1.json │ ├── mix.exs │ ├── updater/ │ │ └── customer-updater.js │ └── version.txt └── preset.spec.js