@4s1/conventional-commit-creator 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [0.10.0](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.9.0...v0.10.0) (2021-12-15)
6
+
5
7
  ## [0.9.0](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.8.0...v0.9.0) (2021-12-10)
6
8
 
7
9
  ## [0.8.0](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.7.0...v0.8.0) (2021-11-18)
package/README.md CHANGED
@@ -1,12 +1,16 @@
1
1
  # Conventional Commit Creator
2
2
 
3
+ This CLI application assists in creating commit messages that are conform to the conventional commit style.
4
+ It will ask for type, scope (optional), description and issue (optional).
5
+
3
6
  ## Install
4
7
 
5
8
  ```bash
9
+ # Install globally
6
10
  npm install -g @4s1/conventional-commit-creator
7
11
  ```
8
12
 
9
- ## Run
13
+ ## Usage
10
14
 
11
15
  ```bash
12
16
  conventional-commit-creator
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@4s1/conventional-commit-creator",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Conventional Commit Creator",
5
+ "keywords": [
6
+ "conventional commit",
7
+ "4s1"
8
+ ],
5
9
  "bugs": {
6
10
  "url": "https://gitlab.com/4s1/conventional-commit-creator/issues"
7
11
  },
@@ -43,10 +47,10 @@
43
47
  "prompts": "^2.4.2"
44
48
  },
45
49
  "devDependencies": {
46
- "@4s1/eslint-config": "3.3.0",
47
- "@4s1/ts-config": "1.3.1",
48
- "@commitlint/cli": "^15.0.0",
49
- "@commitlint/config-conventional": "^15.0.0",
50
+ "@4s1/eslint-config": "^3.4.0",
51
+ "@4s1/ts-config": "^1.4.0",
52
+ "@commitlint/cli": "15.0.0",
53
+ "@commitlint/config-conventional": "15.0.0",
50
54
  "@types/node": "14.18.0",
51
55
  "@types/prompts": "2.4.0",
52
56
  "eslint": "8.4.1",
@@ -54,7 +58,7 @@
54
58
  "prettier": "2.5.1",
55
59
  "standard-version": "9.3.2",
56
60
  "ts-node": "10.4.0",
57
- "typescript": "4.5.3"
61
+ "typescript": "4.5.4"
58
62
  },
59
63
  "publishConfig": {
60
64
  "access": "public"