@abelspithost/commitlint 0.0.3 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +17 -14
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @abelspithost/commitlint
2
2
 
3
+ [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=aspithost_commitlint&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=aspithost_commitlint)
4
+
3
5
  A shared [commitlint](https://commitlint.js.org/) preset that extends `@commitlint/config-conventional` with stricter defaults, plus a CLI to set everything up with one command.
4
6
 
5
7
  ## What's included
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abelspithost/commitlint",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "Shared commitlint preset extending @commitlint/config-conventional with stricter defaults",
5
5
  "keywords": [
6
6
  "commitlint",
@@ -39,8 +39,11 @@
39
39
  "dist"
40
40
  ],
41
41
  "scripts": {
42
- "build": "npm run clean && tsc -p tsconfig.build.json",
42
+ "build": "npm run clean && npm run typecheck && tsc -p tsconfig.build.json && npm run deps:check",
43
43
  "clean": "rimraf dist",
44
+ "deps:check": "npx -y npm-check-updates --cooldown 2",
45
+ "deps:update": "npx -y npm-check-updates -u --target minor --cooldown 2 && npm install",
46
+ "deps:update:major": "npx -y npm-check-updates -u --cooldown 2 && npm install",
44
47
  "lint": "eslint .",
45
48
  "test:unit": "vitest",
46
49
  "test:cov": "vitest run --coverage --coverage.reporter=text",
@@ -48,22 +51,22 @@
48
51
  "prepare": "husky || true"
49
52
  },
50
53
  "dependencies": {
51
- "@commitlint/config-conventional": "^20.5.0",
52
- "@commitlint/format": "^20.5.0",
53
- "@commitlint/types": "^20.5.0"
54
+ "@commitlint/config-conventional": "^21.0.1",
55
+ "@commitlint/format": "^21.0.1",
56
+ "@commitlint/types": "^21.0.1"
54
57
  },
55
58
  "devDependencies": {
56
- "@abelspithost/eslint-config-ts": "^1.0.3",
59
+ "@abelspithost/eslint-config-ts": "^1.1.0",
57
60
  "@abelspithost/tsconfig-node": "^0.0.5",
58
- "@commitlint/cli": "^20.5.0",
59
- "@types/node": "^24.12.2",
60
- "@vitest/coverage-v8": "^4.1.4",
61
- "commitlint": "^20.5.0",
62
- "eslint": "^10.2.0",
61
+ "@commitlint/cli": "^21.0.1",
62
+ "@types/node": "^24.12.4",
63
+ "@vitest/coverage-v8": "^4.1.6",
64
+ "commitlint": "^21.0.1",
65
+ "eslint": "^10.4.0",
63
66
  "husky": "^9.1.7",
64
- "jiti": "^2.6.1",
67
+ "jiti": "^2.7.0",
65
68
  "rimraf": "^6.1.3",
66
- "typescript": "^6.0.2",
67
- "vitest": "^4.1.4"
69
+ "typescript": "^6.0.3",
70
+ "vitest": "^4.1.6"
68
71
  }
69
72
  }