build(deps): bump up dependencies to fix CVEs (#408)

This commit is contained in:
Fine0830
2024-08-26 12:13:03 +08:00
committed by GitHub
parent ddcc49cb42
commit a5073dd3d4
6 changed files with 974 additions and 2423 deletions

View File

@@ -17,35 +17,10 @@
module.exports = {
ignores: [(commit) => commit.includes("init")],
extends: ["@commitlint/config-conventional"],
rules: {
"body-leading-blank": [2, "always"],
"footer-leading-blank": [1, "always"],
"header-max-length": [2, "always", 108],
"subject-empty": [2, "never"],
"type-empty": [2, "never"],
"subject-case": [0],
"type-enum": [
2,
"always",
[
"feat",
"fix",
"perf",
"style",
"docs",
"test",
"refactor",
"build",
"ci",
"chore",
"revert",
"wip",
"workflow",
"types",
"release",
"merge",
],
],
},
};