Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deps: Update dependency @commitlint/cli to v19 #1509

Merged
merged 3 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .commitlintrc.js → .commitlintrc.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
extends: ['@lmc-eu/commitlint-config'],
ignores: [
(commit) => commit.includes('[ci-skip]'),
Expand Down Expand Up @@ -34,7 +34,7 @@ module.exports = {
// Use for anything that does not directly affect packages, ie. updating repo-wide
'repo',
// Use for changes in support applications like `demo`
'demo'
'demo',
],
],
},
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
run: yarn --immutable --inline-builds

- name: Run Commitlint
run: npx commitlint --color --verbose --from $(git merge-base origin/main HEAD)
run: yarn lint:commit
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"build": "npm-run-all --serial packages:build:libs packages:build:web",
"es:lint": "eslint ./",
"es:lint:fix": "yarn es:lint --fix",
"commit:lint:test": "yarn commitlint --from HEAD~1 --to HEAD --verbose",
"format": "yarn format:check",
"format:check": "prettier --check ./",
"format:fix": "prettier --write ./",
Expand All @@ -41,6 +40,7 @@
"lint": "npm-run-all --parallel es:lint lint:markdown packages:lint",
"lint:fix": "npm-run-all --parallel es:lint:fix packages:lint:fix",
"lint:markdown": "remark ./ --quiet",
"lint:commit": "yarn commitlint --verbose --color --from $(git merge-base origin/main HEAD)",
"packages:lint:fix": "lerna run lint:fix --parallel",
"packages:lint": "lerna run lint --parallel --no-sort",
"packages:start": "lerna run start --parallel",
Expand All @@ -59,7 +59,7 @@
"@almacareer/remark-config": "0.1.0",
"@babel/core": "7.25.2",
"@babel/preset-react": "7.24.7",
"@commitlint/cli": "17.8.1",
"@commitlint/cli": "19.5.0",
"@lmc-eu/commitlint-config": "2.0.3",
"@lmc-eu/conventional-changelog-lmc-github": "3.0.3",
"@lmc-eu/eslint-config-react": "2.0.5",
Expand Down
Loading
Loading