Browse Source

chore(deps): update Husky configuration and add commitlint

- Updates Husky to v9.0.11 with new configuration format
- Adds @commitlint/cli and @commitlint/config-conventional for commit message validation
- Replaces deprecated Husky helper script with new format
- Updates package-lock.json with new dependency versions
- Prepares for Husky v10.0.0 compatibility

Dependencies: Husky v9.0.11, @commitlint/cli v18.6.1, @commitlint/config-conventional v18.6.2
pull/153/head
Matthew Raymer 13 hours ago
parent
commit
6cf5183371
  1. 13240
      package-lock.json
  2. 12
      package.json

13240
package-lock.json

File diff suppressed because it is too large

12
package.json

@ -139,7 +139,9 @@
"*.{js,ts,vue,css,md,json,yml,yaml}": "eslint --fix || true"
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@capacitor-community/electron": "^5.0.1",
@ -230,6 +232,8 @@
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@playwright/test": "^1.54.2",
"@types/dom-webcodecs": "^0.1.7",
"@types/jest": "^30.0.0",
@ -259,14 +263,12 @@
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.32.0",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"markdownlint": "^0.37.4",
"markdownlint-cli": "^0.44.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"npm-check-updates": "^17.1.13",
"path-browserify": "^1.0.1",
"postcss": "^8.4.38",

Loading…
Cancel
Save