Skip to content

Commit d37dc0a

Browse files
committed
chore: add commitlint and conventional changelog configuration
- Install @commitlint/cli and @commitlint/config-conventional - Add husky prepare script for git hooks - Configure release-it to use conventional changelog - Update package.json with new scripts and configuration
1 parent 6da7704 commit d37dc0a

File tree

6 files changed

+1058
-12
lines changed

6 files changed

+1058
-12
lines changed

.husky/commit-msg

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn commitlint --edit $1

.husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarn cs-fix && yarn test

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to the MONEI PHP SDK will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
This changelog is automatically generated with [release-it](https://github.com/release-it/release-it)
9+
and [@release-it/conventional-changelog](https://github.com/release-it/conventional-changelog).
10+
11+
## [Unreleased]
12+
13+
### Added
14+
- Initial setup with conventional-changelog

commitlint.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
extends: ['@commitlint/config-conventional'],
3+
rules: {
4+
'body-max-line-length': [2, 'always', 100],
5+
'footer-max-line-length': [2, 'always', 100],
6+
'header-max-length': [2, 'always', 100]
7+
}
8+
};

package.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@
99
"release": "release-it",
1010
"cs-fix": "composer cs-fix",
1111
"test": "composer test",
12-
"postbuild": "yarn cs-fix && yarn test"
12+
"postbuild": "yarn cs-fix && yarn test",
13+
"prepare": "husky",
14+
"commitlint": "commitlint --edit"
1315
},
1416
"license": "MIT",
1517
"devDependencies": {
18+
"@commitlint/cli": "^19.7.1",
19+
"@commitlint/config-conventional": "^19.7.1",
1620
"@openapitools/openapi-generator-cli": "2.17.0",
1721
"@release-it/bumper": "^7.0.1",
22+
"@release-it/conventional-changelog": "^10.0.0",
23+
"husky": "^9.0.11",
1824
"release-it": "^18.1.2"
1925
},
2026
"release-it": {
@@ -40,6 +46,10 @@
4046
},
4147
"lib/MoneiClient.php"
4248
]
49+
},
50+
"@release-it/conventional-changelog": {
51+
"preset": "angular",
52+
"infile": "CHANGELOG.md"
4353
}
4454
}
4555
},

0 commit comments

Comments
 (0)