├── .circleci └── config.yml ├── .codecov.yml ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── lerna.json ├── package.json └── packages ├── conventional-github-releaser ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json └── src │ ├── cli.js │ ├── index.js │ ├── transform.js │ └── transform.spec.js ├── conventional-gitlab-releaser ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json └── src │ ├── cli.js │ ├── index.js │ ├── transform.js │ └── transform.spec.js └── conventional-tidelift-releaser ├── CHANGELOG.md ├── Dockerfile ├── license.md ├── package.json ├── readme.md └── src ├── cli.js ├── index.js ├── transform.js └── transform.spec.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/README.md -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/package.json -------------------------------------------------------------------------------- /packages/conventional-github-releaser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/CHANGELOG.md -------------------------------------------------------------------------------- /packages/conventional-github-releaser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/LICENSE.md -------------------------------------------------------------------------------- /packages/conventional-github-releaser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/README.md -------------------------------------------------------------------------------- /packages/conventional-github-releaser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/package.json -------------------------------------------------------------------------------- /packages/conventional-github-releaser/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/src/cli.js -------------------------------------------------------------------------------- /packages/conventional-github-releaser/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/src/index.js -------------------------------------------------------------------------------- /packages/conventional-github-releaser/src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/src/transform.js -------------------------------------------------------------------------------- /packages/conventional-github-releaser/src/transform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-github-releaser/src/transform.spec.js -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/CHANGELOG.md -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/LICENSE.md -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/README.md -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/package.json -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/src/cli.js -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/src/index.js -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/src/transform.js -------------------------------------------------------------------------------- /packages/conventional-gitlab-releaser/src/transform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-gitlab-releaser/src/transform.spec.js -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/CHANGELOG.md -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/Dockerfile -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/license.md -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/package.json -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/readme.md -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/src/cli.js -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/src/index.js -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/src/transform.js -------------------------------------------------------------------------------- /packages/conventional-tidelift-releaser/src/transform.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/releaser-tools/HEAD/packages/conventional-tidelift-releaser/src/transform.spec.js --------------------------------------------------------------------------------