From 7a8f91c550ee777d6bd8cd33d4ca17be5c2e3dac Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 22:40:09 -0500 Subject: [PATCH 01/32] chore: init --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++++ index.json | 29 +++++++++++++++++++++++++++++ package.json | 12 ++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 index.json create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30237ea --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ + +# Created by https://www.gitignore.io/api/node + +### Node ### +# Logs +logs +*.log +npm-debug.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages + +# Optional npm cache directory +.npm + +# Optional REPL history +.node_repl_history diff --git a/README.md b/README.md new file mode 100644 index 0000000..1f8950e --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# conventional-commit-types + +* https://github.com/commitizen/cz-cli +* https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19 diff --git a/index.json b/index.json new file mode 100644 index 0000000..d100b2b --- /dev/null +++ b/index.json @@ -0,0 +1,29 @@ +{ + "feat": { + "description": "A new feature" + }, + "fix": { + "description": "A bug fix" + }, + "docs": { + "description": "Documentation only changes" + }, + "style": { + "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)" + }, + "refactor": { + "description": "A code change that neither fixes a bug or adds a feature" + }, + "perf": { + "description": "A code change that improves performance" + }, + "test": { + "description": "Adding missing tests" + }, + "chore": { + "description": "Changes to the build process or auxillary tools and libraries such as documentation generation" + }, + "revert": { + "description": "Reverts a previous commit" + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..aff9bbf --- /dev/null +++ b/package.json @@ -0,0 +1,12 @@ +{ + "name": "conventional-commit-types", + "version": "1.0.0", + "description": "", + "main": "index.json", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "Anders D. Johnson (https://andrz.me/)", + "license": "ISC" +} From 2f08c276d4f6815f696ac0409479affa5d75b291 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:22:28 -0500 Subject: [PATCH 02/32] fix: spelling --- index.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.json b/index.json index d100b2b..6c36c9f 100644 --- a/index.json +++ b/index.json @@ -21,7 +21,7 @@ "description": "Adding missing tests" }, "chore": { - "description": "Changes to the build process or auxillary tools and libraries such as documentation generation" + "description": "Changes to the build process or auxiliary tools and libraries such as documentation generation" }, "revert": { "description": "Reverts a previous commit" From 079d7f5fba0c29b4b454d9b52bd437d037dcb5e6 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:23:19 -0500 Subject: [PATCH 03/32] docs(README): explain --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1f8950e..b50946c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # conventional-commit-types +List of conventional commit types. + * https://github.com/commitizen/cz-cli * https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19 + From 2b762471a3c567e076495c63040836c3bac76b78 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:25:50 -0500 Subject: [PATCH 04/32] fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index aff9bbf..e28237f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "conventional-commit-types", "version": "1.0.0", - "description": "", + "description": "List of conventional commit types.", "main": "index.json", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" From f6a06c22924fc6eee01195b9de1182dda15bd13e Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:23:29 -0500 Subject: [PATCH 05/32] 1.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e28237f..e6a137b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "1.0.0", + "version": "1.0.1", "description": "List of conventional commit types.", "main": "index.json", "scripts": { From 0d009ca4000a6445fb0ccf6f8b8af81ef85f2300 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:35:14 -0500 Subject: [PATCH 06/32] chore(package): add repo --- package.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e6a137b..82f0251 100644 --- a/package.json +++ b/package.json @@ -8,5 +8,9 @@ }, "keywords": [], "author": "Anders D. Johnson (https://andrz.me/)", - "license": "ISC" -} + "license": "ISC", + "repository": { + "type": "git", + "url": "https://github.com/adjohnson916/conventional-commit-types.git" + } +} \ No newline at end of file From fe600b1952d57709d8084b11d3effb61887b0c78 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:35:22 -0500 Subject: [PATCH 07/32] 1.0.2 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 82f0251..a2d42f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "1.0.1", + "version": "1.0.2", "description": "List of conventional commit types.", "main": "index.json", "scripts": { @@ -13,4 +13,4 @@ "type": "git", "url": "https://github.com/adjohnson916/conventional-commit-types.git" } -} \ No newline at end of file +} From 0e35a36aba6ba5119a36261247dbb1c370c48197 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:39:09 -0500 Subject: [PATCH 08/32] docs(README): refer to CLI --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b50946c..94a7291 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,5 @@ List of conventional commit types. * https://github.com/commitizen/cz-cli * https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19 +Created for https://github.com/adjohnson916/conventional-commit-types-cli. + From a82a1785205825db8e2cfbe4158aaca28e704637 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 6 Aug 2016 23:39:15 -0500 Subject: [PATCH 09/32] 1.0.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a2d42f7..85ce0e2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "1.0.2", + "version": "1.0.3", "description": "List of conventional commit types.", "main": "index.json", "scripts": { From 19a73d0992278a03231d5a1a8146447b4464a18e Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Tue, 9 Aug 2016 17:32:35 -0500 Subject: [PATCH 10/32] feat: move to types key BREAKING CHANGE: changes JSON format --- index.json | 54 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/index.json b/index.json index 6c36c9f..8cbe860 100644 --- a/index.json +++ b/index.json @@ -1,29 +1,31 @@ { - "feat": { - "description": "A new feature" - }, - "fix": { - "description": "A bug fix" - }, - "docs": { - "description": "Documentation only changes" - }, - "style": { - "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)" - }, - "refactor": { - "description": "A code change that neither fixes a bug or adds a feature" - }, - "perf": { - "description": "A code change that improves performance" - }, - "test": { - "description": "Adding missing tests" - }, - "chore": { - "description": "Changes to the build process or auxiliary tools and libraries such as documentation generation" - }, - "revert": { - "description": "Reverts a previous commit" + "types": { + "feat": { + "description": "A new feature" + }, + "fix": { + "description": "A bug fix" + }, + "docs": { + "description": "Documentation only changes" + }, + "style": { + "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)" + }, + "refactor": { + "description": "A code change that neither fixes a bug or adds a feature" + }, + "perf": { + "description": "A code change that improves performance" + }, + "test": { + "description": "Adding missing tests" + }, + "chore": { + "description": "Changes to the build process or auxiliary tools and libraries such as documentation generation" + }, + "revert": { + "description": "Reverts a previous commit" + } } } From 046c9ffc422220d86a53b6a9eff34f1b3ebcfde3 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Tue, 9 Aug 2016 17:34:05 -0500 Subject: [PATCH 11/32] 2.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 85ce0e2..e6acbb0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "1.0.3", + "version": "2.0.0", "description": "List of conventional commit types.", "main": "index.json", "scripts": { From b0b1457d434f79103077d561ad68a64ed91bfa66 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sun, 14 Aug 2016 23:15:04 -0500 Subject: [PATCH 12/32] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 94a7291..81f7b28 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,10 @@ List of conventional commit types. -* https://github.com/commitizen/cz-cli -* https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19 +Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) for [commitizen/cz-cli](https://github.com/commitizen/cz-cli). -Created for https://github.com/adjohnson916/conventional-commit-types-cli. +Commit types originally from: +* [AngularJS Git Commit Message Conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19) +* [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) +Created for [adjohnson916/conventional-commit-types-cli](https://github.com/adjohnson916/conventional-commit-types-cli). From 68b6ef8bbfc10100036e91b5ef32f21f7dacaef5 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Tue, 23 Aug 2016 00:06:53 -0500 Subject: [PATCH 13/32] docs(README): describe spec --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 81f7b28..5952813 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ List of conventional commit types. +Exports an object with a `types` key whose value is an object whose keys are type names and whose values are objects with key-value pairs such as `description` as string, etc. See [index.json](index.json). Any alternatives should follow the same spec. + Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) for [commitizen/cz-cli](https://github.com/commitizen/cz-cli). Commit types originally from: From 84d6051b7f62d56dd6941de7eca9b1a9c2e819b7 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Tue, 23 Aug 2016 00:07:42 -0500 Subject: [PATCH 14/32] docs(README): add headings --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5952813..9a109ad 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,12 @@ List of conventional commit types. +## Spec + Exports an object with a `types` key whose value is an object whose keys are type names and whose values are objects with key-value pairs such as `description` as string, etc. See [index.json](index.json). Any alternatives should follow the same spec. +## Etc. + Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) for [commitizen/cz-cli](https://github.com/commitizen/cz-cli). Commit types originally from: From f902eada2a5ecfa79160276e4d8aadc8fe00a7e2 Mon Sep 17 00:00:00 2001 From: Steve Mao Date: Thu, 15 Sep 2016 23:46:25 +1000 Subject: [PATCH 15/32] feat(types): update all the types to match the latest changes in angular (#1) https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type --- index.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/index.json b/index.json index 8cbe860..4fcb4fd 100644 --- a/index.json +++ b/index.json @@ -10,19 +10,25 @@ "description": "Documentation only changes" }, "style": { - "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)" + "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" }, "refactor": { - "description": "A code change that neither fixes a bug or adds a feature" + "description": "A code change that neither fixes a bug nor adds a feature" }, "perf": { "description": "A code change that improves performance" }, "test": { - "description": "Adding missing tests" + "description": "Adding missing tests or correcting existing tests" + }, + "build": { + "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" + }, + "ci": { + "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)" }, "chore": { - "description": "Changes to the build process or auxiliary tools and libraries such as documentation generation" + "description": "Other changes that don't modify src or test files" }, "revert": { "description": "Reverts a previous commit" From ec72dc381ae1992efb2bcb67de13d7f76329030d Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:02:56 -0500 Subject: [PATCH 16/32] docs(README): add npm badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9a109ad..32a9689 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # conventional-commit-types +[![npm](https://img.shields.io/npm/v/npm.svg?maxAge=2592000)](https://www.npmjs.com/package/conventional-commit-types) + List of conventional commit types. ## Spec From 97a85e30983be03e81bfc0b93624957d507aee53 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:06:22 -0500 Subject: [PATCH 17/32] test: validate json Closes #2 --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e6acbb0..760bbe6 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "List of conventional commit types.", "main": "index.json", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "json -f index.json" }, "keywords": [], "author": "Anders D. Johnson (https://andrz.me/)", @@ -12,5 +12,8 @@ "repository": { "type": "git", "url": "https://github.com/adjohnson916/conventional-commit-types.git" + }, + "devDependencies": { + "json": "^9.0.4" } } From 1ba4be969823f4ee9f7a3d5ad9de9cb27e0e200f Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:24:04 -0500 Subject: [PATCH 18/32] ci: add travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..587bd3e --- /dev/null +++ b/.travis.yml @@ -0,0 +1 @@ +language: node_js From e4d45b5edc48ae28334bb784a411d64c45a82a0d Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:29:17 -0500 Subject: [PATCH 19/32] docs(README): add travis badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 32a9689..c78981a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # conventional-commit-types [![npm](https://img.shields.io/npm/v/npm.svg?maxAge=2592000)](https://www.npmjs.com/package/conventional-commit-types) +[![Build Status](https://img.shields.io/travis/adjohnson916/conventional-commit-types.svg?maxAge=2592000)](https://travis-ci.org/adjohnson916/conventional-commit-types) List of conventional commit types. From 6019393d8673291c3b8d6f9925b148170dd96411 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:29:58 -0500 Subject: [PATCH 20/32] docs(README): fix npm badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c78981a..d7fb2bb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # conventional-commit-types -[![npm](https://img.shields.io/npm/v/npm.svg?maxAge=2592000)](https://www.npmjs.com/package/conventional-commit-types) +[![npm](https://img.shields.io/npm/v/conventional-commit-types.svg?maxAge=2592000)](https://www.npmjs.com/package/conventional-commit-types) [![Build Status](https://img.shields.io/travis/adjohnson916/conventional-commit-types.svg?maxAge=2592000)](https://travis-ci.org/adjohnson916/conventional-commit-types) List of conventional commit types. From 77e2b279823aa6884b8cec468920bab8eba1ec32 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 15 Sep 2016 23:58:39 -0500 Subject: [PATCH 21/32] docs(README): reference validate-commit-msg --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d7fb2bb..4901eec 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ Exports an object with a `types` key whose value is an object whose keys are typ Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) for [commitizen/cz-cli](https://github.com/commitizen/cz-cli). +Can be used with [kentcdodds/validate-commit-msg](https://github.com/kentcdodds/validate-commit-msg#types). + Commit types originally from: * [AngularJS Git Commit Message Conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19) * [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) From 087cd210c1c22471d1b4b3107d5f9a9daf9bbaad Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Fri, 16 Sep 2016 00:00:03 -0500 Subject: [PATCH 22/32] docs(README): update angular commit message link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4901eec..8e1393b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,8 @@ Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz- Can be used with [kentcdodds/validate-commit-msg](https://github.com/kentcdodds/validate-commit-msg#types). Commit types originally from: -* [AngularJS Git Commit Message Conventions](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19) +* https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type +* [AngularJS Git Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type) * [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) Created for [adjohnson916/conventional-commit-types-cli](https://github.com/adjohnson916/conventional-commit-types-cli). From 7e2bd8f06ee680867bbf87c3723ab7844b98e5e1 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sun, 16 Oct 2016 20:37:39 -0500 Subject: [PATCH 23/32] docs(README): remove redundant link --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8e1393b..5dc7f6a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,6 @@ Used by [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz- Can be used with [kentcdodds/validate-commit-msg](https://github.com/kentcdodds/validate-commit-msg#types). Commit types originally from: -* https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type * [AngularJS Git Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type) * [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) From 8c26d013e4002cb61a59458368c2884f11c8726e Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Mon, 20 Feb 2017 20:13:34 -0600 Subject: [PATCH 24/32] docs(README): fix Travis reference for new owner (#4) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5dc7f6a..3e53c4f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # conventional-commit-types [![npm](https://img.shields.io/npm/v/conventional-commit-types.svg?maxAge=2592000)](https://www.npmjs.com/package/conventional-commit-types) -[![Build Status](https://img.shields.io/travis/adjohnson916/conventional-commit-types.svg?maxAge=2592000)](https://travis-ci.org/adjohnson916/conventional-commit-types) +[![Build Status](https://img.shields.io/travis/commitizen/conventional-commit-types.svg?maxAge=2592000)](https://travis-ci.org/commitizen/conventional-commit-types) List of conventional commit types. From 01a66a9c4946f51c3018eef4c26cef79ed82205e Mon Sep 17 00:00:00 2001 From: Steve Mao Date: Sun, 2 Jul 2017 04:41:54 +1000 Subject: [PATCH 25/32] feat(titles): add a title to each type (#5) --- index.json | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/index.json b/index.json index 4fcb4fd..8bc4c79 100644 --- a/index.json +++ b/index.json @@ -1,37 +1,48 @@ { "types": { "feat": { - "description": "A new feature" + "description": "A new feature", + "title": "Features" }, "fix": { - "description": "A bug fix" + "description": "A bug fix", + "title": "Bug Fixes" }, "docs": { - "description": "Documentation only changes" + "description": "Documentation only changes", + "title": "Documentation" }, "style": { - "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)" + "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)", + "title": "Styles" }, "refactor": { - "description": "A code change that neither fixes a bug nor adds a feature" + "description": "A code change that neither fixes a bug nor adds a feature", + "title": "Code Refactoring" }, "perf": { - "description": "A code change that improves performance" + "description": "A code change that improves performance", + "title": "Performance Improvements" }, "test": { - "description": "Adding missing tests or correcting existing tests" + "description": "Adding missing tests or correcting existing tests", + "title": "Tests" }, "build": { - "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)" + "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)", + "title": "Builds" }, "ci": { - "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)" + "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)", + "title": "Continuous Integrations" }, "chore": { - "description": "Other changes that don't modify src or test files" + "description": "Other changes that don't modify src or test files", + "title": "Chores" }, "revert": { - "description": "Reverts a previous commit" + "description": "Reverts a previous commit", + "title": "Reverts" } } } From f966555ed1c03e4cbb84c9fa6848559657141c97 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 1 Jul 2017 13:43:20 -0500 Subject: [PATCH 26/32] docs(README): update username --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3e53c4f..b9683bd 100644 --- a/README.md +++ b/README.md @@ -19,4 +19,4 @@ Commit types originally from: * [AngularJS Git Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type) * [commitizen/cz-conventional-changelog](https://github.com/commitizen/cz-conventional-changelog) -Created for [adjohnson916/conventional-commit-types-cli](https://github.com/adjohnson916/conventional-commit-types-cli). +Created for [AndersDJohnson/conventional-commit-types-cli](https://github.com/AndersDJohnson/conventional-commit-types-cli). From 90f0eafb91885ceae2a254e69954f97b780147b3 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 1 Jul 2017 13:45:54 -0500 Subject: [PATCH 27/32] chore(package): remove email --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 760bbe6..e510405 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "test": "json -f index.json" }, "keywords": [], - "author": "Anders D. Johnson (https://andrz.me/)", + "author": "Anders D. Johnson (https://andrz.me/)", "license": "ISC", "repository": { "type": "git", From ad9951e9d678b458b638401026cb7a62ae9fac99 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 1 Jul 2017 13:46:30 -0500 Subject: [PATCH 28/32] chore(package): update repo --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e510405..20f5b8c 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "license": "ISC", "repository": { "type": "git", - "url": "https://github.com/adjohnson916/conventional-commit-types.git" + "url": "https://github.com/commitizen/conventional-commit-types.git" }, "devDependencies": { "json": "^9.0.4" From 2f47c3b1ccacc477fecdc87bee64fabcb1dcce7f Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Mon, 3 Jul 2017 18:08:38 -0500 Subject: [PATCH 29/32] docs(readme): add title --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9683bd..0d5a458 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ List of conventional commit types. ## Spec -Exports an object with a `types` key whose value is an object whose keys are type names and whose values are objects with key-value pairs such as `description` as string, etc. See [index.json](index.json). Any alternatives should follow the same spec. +Exports an object with a `types` key whose value is an object whose keys are type names and whose values are objects with key-value pairs such as `description` as string, optional `title` as string, etc. See [index.json](index.json). Any alternatives should follow the same spec. ## Etc. From ee3f31bc18be9bf080b9b652b66b01ee174f80b8 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 17 Sep 2016 14:25:18 -0500 Subject: [PATCH 30/32] 2.1.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 760bbe6..38d1f92 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "2.0.0", + "version": "2.1.0", "description": "List of conventional commit types.", "main": "index.json", "scripts": { From abf41ea37f4f618480e7be0007f6461ab6c8ec47 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Mon, 3 Jul 2017 18:16:45 -0500 Subject: [PATCH 31/32] 2.2.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bcfab76..28ac8ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "conventional-commit-types", - "version": "2.1.0", + "version": "2.2.0", "description": "List of conventional commit types.", "main": "index.json", "scripts": { From bcbc1fec38a37f6d0a4d7d60605a9f5eed0da388 Mon Sep 17 00:00:00 2001 From: AndersDJohnson Date: Fri, 20 Jul 2018 08:11:37 -0500 Subject: [PATCH 32/32] feat: sort types keys --- index.json | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/index.json b/index.json index 8bc4c79..afcfdd0 100644 --- a/index.json +++ b/index.json @@ -1,5 +1,21 @@ { "types": { + "build": { + "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)", + "title": "Builds" + }, + "chore": { + "description": "Other changes that don't modify src or test files", + "title": "Chores" + }, + "ci": { + "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)", + "title": "Continuous Integrations" + }, + "docs": { + "description": "Documentation only changes", + "title": "Documentation" + }, "feat": { "description": "A new feature", "title": "Features" @@ -8,41 +24,25 @@ "description": "A bug fix", "title": "Bug Fixes" }, - "docs": { - "description": "Documentation only changes", - "title": "Documentation" - }, - "style": { - "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)", - "title": "Styles" + "perf": { + "description": "A code change that improves performance", + "title": "Performance Improvements" }, "refactor": { "description": "A code change that neither fixes a bug nor adds a feature", "title": "Code Refactoring" }, - "perf": { - "description": "A code change that improves performance", - "title": "Performance Improvements" + "revert": { + "description": "Reverts a previous commit", + "title": "Reverts" + }, + "style": { + "description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)", + "title": "Styles" }, "test": { "description": "Adding missing tests or correcting existing tests", "title": "Tests" - }, - "build": { - "description": "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)", - "title": "Builds" - }, - "ci": { - "description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)", - "title": "Continuous Integrations" - }, - "chore": { - "description": "Other changes that don't modify src or test files", - "title": "Chores" - }, - "revert": { - "description": "Reverts a previous commit", - "title": "Reverts" } } -} +} \ No newline at end of file