@4s1/conventional-commit-creator 0.11.0 → 0.11.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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.11.1](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.11.0...v0.11.1) (2021-12-26)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * large amount of changes supported ([#5](https://gitlab.com/4s1/conventional-commit-creator/issues/5)) ([db17314](https://gitlab.com/4s1/conventional-commit-creator/commit/db173145a42fcd7f4e701b8a4f413c89f890c680))
11
+
5
12
  ## [0.11.0](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.10.2...v0.11.0) (2021-12-26)
6
13
 
7
14
  ## [0.10.2](https://gitlab.com/4s1/conventional-commit-creator/compare/v0.9.0...v0.10.2) (2021-12-21)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4s1/conventional-commit-creator",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Conventional Commit Creator",
5
5
  "keywords": [
6
6
  "conventional commit",
@@ -31,8 +31,7 @@
31
31
  "build:dev": "pnpm run build -- --project tsconfig.dev.json",
32
32
  "format": "prettier --write src/",
33
33
  "lbt": "npm run lint && npm run build && npm run test",
34
- "lint": "echo no linting",
35
- "lint:fix": "npm run lint -- --fix",
34
+ "lint": "eslint --ext .ts src/",
36
35
  "prepare": "husky install",
37
36
  "release": "git diff --exit-code --quiet && pnpm run lbt && standard-version",
38
37
  "release:major": "pnpm run release -- --release-as major",