├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── cli.js ├── index.js ├── lib ├── parser.js └── regex.js ├── package.json └── test ├── cli.spec.js ├── fixtures ├── bad_commit.txt ├── log1.txt ├── log2.txt └── log3.txt ├── index.spec.js ├── parser.spec.js └── regex.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/index.js -------------------------------------------------------------------------------- /lib/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/lib/parser.js -------------------------------------------------------------------------------- /lib/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/lib/regex.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/package.json -------------------------------------------------------------------------------- /test/cli.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/cli.spec.js -------------------------------------------------------------------------------- /test/fixtures/bad_commit.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/log1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/fixtures/log1.txt -------------------------------------------------------------------------------- /test/fixtures/log2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/fixtures/log2.txt -------------------------------------------------------------------------------- /test/fixtures/log3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/fixtures/log3.txt -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/parser.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/parser.spec.js -------------------------------------------------------------------------------- /test/regex.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conventional-changelog-archived-repos/conventional-commits-parser/HEAD/test/regex.spec.js --------------------------------------------------------------------------------