├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── cli.js ├── index.js ├── package.json └── test ├── cli.js ├── fixtures ├── _CHANGELOG.md ├── _package.json ├── config.js └── context.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .nyc_output 3 | tmp 4 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/package.json -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/fixtures/_CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Some previous changelog. 2 | -------------------------------------------------------------------------------- /test/fixtures/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/test/fixtures/_package.json -------------------------------------------------------------------------------- /test/fixtures/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/test/fixtures/config.js -------------------------------------------------------------------------------- /test/fixtures/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "my-repo" 3 | } 4 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/standard-changelog/HEAD/test/test.js --------------------------------------------------------------------------------