├── .gitignore ├── CHANGELOG.md ├── README.md ├── index.js ├── package.json ├── renovate.json ├── tests ├── shared.js ├── v1.test.js └── v2.test.js └── versions ├── 1.0.0 ├── README.md └── schema.json ├── 2.0.0 ├── README.md └── schema.json ├── 2.1.0 ├── README.md └── schema.json └── 2.2.0 ├── README.md └── schema.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./versions/2.1.0/schema.json') 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/tests/shared.js -------------------------------------------------------------------------------- /tests/v1.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/tests/v1.test.js -------------------------------------------------------------------------------- /tests/v2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/tests/v2.test.js -------------------------------------------------------------------------------- /versions/1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/1.0.0/README.md -------------------------------------------------------------------------------- /versions/1.0.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/1.0.0/schema.json -------------------------------------------------------------------------------- /versions/2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.0.0/README.md -------------------------------------------------------------------------------- /versions/2.0.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.0.0/schema.json -------------------------------------------------------------------------------- /versions/2.1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.1.0/README.md -------------------------------------------------------------------------------- /versions/2.1.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.1.0/schema.json -------------------------------------------------------------------------------- /versions/2.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.2.0/README.md -------------------------------------------------------------------------------- /versions/2.2.0/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog/conventional-changelog-config-spec/HEAD/versions/2.2.0/schema.json --------------------------------------------------------------------------------