Skip to content

Commit b34fc17

Browse files
chore: init
0 parents  commit b34fc17

4 files changed

Lines changed: 87 additions & 0 deletions

File tree

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
# Created by https://www.gitignore.io/api/node
3+
4+
### Node ###
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# node-waf configuration
29+
.lock-wscript
30+
31+
# Compiled binary addons (http://nodejs.org/api/addons.html)
32+
build/Release
33+
34+
# Dependency directories
35+
node_modules
36+
jspm_packages
37+
38+
# Optional npm cache directory
39+
.npm
40+
41+
# Optional REPL history
42+
.node_repl_history

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# conventional-commit-types
2+
3+
* https://github.com/commitizen/cz-cli
4+
* https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#heading=h.8gbcep5xnw19

index.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"feat": {
3+
"description": "A new feature"
4+
},
5+
"fix": {
6+
"description": "A bug fix"
7+
},
8+
"docs": {
9+
"description": "Documentation only changes"
10+
},
11+
"style": {
12+
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)"
13+
},
14+
"refactor": {
15+
"description": "A code change that neither fixes a bug or adds a feature"
16+
},
17+
"perf": {
18+
"description": "A code change that improves performance"
19+
},
20+
"test": {
21+
"description": "Adding missing tests"
22+
},
23+
"chore": {
24+
"description": "Changes to the build process or auxillary tools and libraries such as documentation generation"
25+
},
26+
"revert": {
27+
"description": "Reverts a previous commit"
28+
}
29+
}

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "conventional-commit-types",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.json",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "Anders D. Johnson <anders.d.johnson.developer@gmail.com> (https://andrz.me/)",
11+
"license": "ISC"
12+
}

0 commit comments

Comments
 (0)