Skip to content
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
19 changes: 19 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## 动机

<!-- 要解决什么问题、为什么现在做、为什么属于这里的 owner 或约束? -->

## 解决方案

<!-- 具体做了什么,以及带来的行为、架构或用户影响是什么? -->

<!-- pr-body:optional -->

## 说明

<!-- 兼容性、迁移、安全性、风险或 PR stack 依赖。若无相关内容,可省略本节。 -->

<!-- pr-body:optional -->

## 后续工作

<!-- 描述明确不在本 PR 内、但建议继续推进的具体工作。若无后续工作,可省略。 -->
15 changes: 14 additions & 1 deletion .github/workflows/ci-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ jobs:

- name: Check PR title
if: github.event.pull_request.user.login != 'renovate[bot]'
uses: zrr1999/zendev/actions/validate-title@v0.0.7
uses: zendev-lab/zendev/actions/validate-title@v0.2.0
with:
text: ${{ github.event.pull_request.title }}

body:
name: PR body
if: github.event.pull_request.user.login != 'renovate[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7

- name: Check PR body
uses: zendev-lab/zendev/actions/validate-body@v0.2.0
with:
body: ${{ github.event.pull_request.body }}
template: .github/pull_request_template.md
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.18.1
24.20.0
6 changes: 3 additions & 3 deletions apps/blog/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@
"caniuse-lite": "^1.0.30001806",
"dayjs": "^1.11.21",
"lodash.kebabcase": "^4.1.1",
"mermaid": "11.16.0",
"mermaid": "11.17.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-code-titles": "^0.1.2",
"remark-collapse": "^0.1.2",
"remark-math": "^6.0.0",
"remark-toc": "^9.0.0",
"satori": "^0.29.0",
"satori": "^0.33.0",
"tailwindcss": "catalog:",
"typescript": "catalog:"
},
Expand All @@ -53,6 +53,6 @@
"react-dom": "^19.2.7",
"vite": "catalog:",
"vite-plus": "catalog:",
"vue": "3.5.40"
"vue": "3.5.42"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"prepare": "pnpx @j178/prek install --hook-type commit-msg --hook-type pre-commit"
},
"devDependencies": {
"oxlint": "1.76.0",
"oxlint": "1.80.0",
"vite-plus": "catalog:",
"wrangler": "4.118.0"
"wrangler": "4.127.1"
},
"packageManager": "pnpm@11.18.0"
"packageManager": "pnpm@11.24.0"
}
1,819 changes: 855 additions & 964 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ catalog:
astro: "^7.1.1"
# astro check 仍依赖 TS 6 的 sys API;TS 7 原生编译器尚不兼容(withastro/astro#17268)
typescript: "6.0.3"
vite: "npm:@voidzero-dev/vite-plus-core@0.2.7"
vite-plus: "0.2.7"
vitest: "npm:@voidzero-dev/vite-plus-test@0.1.24"
vite: "npm:@voidzero-dev/vite-plus-core@0.3.0"
vite-plus: "0.3.0"
vitest: "4.1.11"
tailwindcss: "^4.3.3"
"@tailwindcss/vite": "^4.3.3"
"@tailwindcss/typography": "^0.5.20"
Expand Down
4 changes: 2 additions & 2 deletions prek.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ rev = "v1.33.1"
hooks = [{ id = "typos", args = ["--force-exclude"] }]

[[repos]]
repo = "https://github.com/zrr1999/zendev"
rev = "v0.0.5"
repo = "https://github.com/zendev-lab/zendev"
rev = "v0.2.0"
hooks = [{ id = "zendev-commit-msg" }]

[[repos]]
Expand Down
Loading