Skip to content

Commit a5c36f5

Browse files
authoredJan 22, 2024
Add simplified Chinese documentation (#1290)
* build: update vitepress to 1.0.0-beta.6 version * docs: add simplified Chinese translation
1 parent 3dd4ea2 commit a5c36f5

8 files changed

+1345
-305
lines changed
 

‎docs/.vitepress/config.ts

+20
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,24 @@ export default defineConfig({
2222
{ text: 'Migrating from v4', link: '/migrating-from-v4' },
2323
],
2424
},
25+
locales: {
26+
root: {
27+
label: 'English',
28+
lang: 'en',
29+
},
30+
zh: {
31+
label: '简体中文',
32+
lang: 'zh-CN',
33+
link: '/zh/',
34+
themeConfig: {
35+
sidebar: [
36+
{ text: '介绍', link: '/zh/' },
37+
{ text: '开始使用', link: '/zh/getting-started' },
38+
{ text: '指南', link: '/zh/guide' },
39+
{ text: '疑难解答', link: '/zh/troubleshooting' },
40+
{ text: '从 v4 迁移', link: '/zh/migrating-from-v4' },
41+
],
42+
},
43+
}
44+
}
2545
})

‎docs/zh/getting-started.md

+165
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
# 开始使用
2+
3+
## 自动 <Badge type="tip" text="推荐" />
4+
5+
`husky-init` 是一个一次性命令,用于快速初始化一个带有 husky 的项目。
6+
7+
::: code-group
8+
9+
```shell [npm]
10+
npx husky-init && npm install
11+
```
12+
13+
```shell [pnpm]
14+
pnpm dlx husky-init && pnpm install
15+
```
16+
17+
```shell [yarn]
18+
yarn dlx husky-init --yarn2 && yarn
19+
```
20+
21+
:::
22+
23+
它将会:
24+
25+
1. 添加 `prepare` 脚本到 `package.json`
26+
2. 创建一个你能够编辑的 `pre-commit` hook 示例(默认情况下,`npm test` 将在你提交时运行)
27+
3. 配置 Git hooks 路径
28+
29+
要添加另一个 hook,请使用 `husky add`。例如:
30+
31+
```shell
32+
npx husky add .husky/commit-msg 'npx --no -- commitlint --edit "$1"'
33+
```
34+
35+
::: info 注意
36+
对于 Windows 用户,如果在运行 `npx husky add ...` 时看到帮助信息,请尝试使用 `node node_modules/husky/lib/bin add ...`。这不是 husky 代码的问题。
37+
:::
38+
39+
## 手动
40+
41+
### 安装
42+
43+
1. 安装 `husky`
44+
45+
```shell
46+
npm install husky --save-dev
47+
```
48+
49+
2. 启用 Git hooks
50+
51+
```shell
52+
npx husky install
53+
```
54+
55+
3. 要在安装后自动启用 Git hooks,请编辑 `package.json`
56+
57+
```shell
58+
npm pkg set scripts.prepare="husky install"
59+
```
60+
61+
你应该这样做:
62+
63+
::: code-group
64+
65+
```json [package.json]
66+
{
67+
"scripts": {
68+
"prepare": "husky install" // [!code hl]
69+
}
70+
}
71+
```
72+
73+
:::
74+
75+
::: info 注意
76+
Yarn 2+ 不支持编写生命周期脚本,所以 husky 需要以不同的方式安装(但这不适用于 Yarn1)。参见 [Yarn 2+ 安装](#yarn-2)
77+
:::
78+
79+
## 创建一个 hook
80+
81+
要向 hook 添加命令或创建新的 hook,可以使用 `husky add <file> [cmd]`(再此之前不要忘记执行 `husky install`)。
82+
83+
```shell
84+
npx husky add .husky/pre-commit "npm test"
85+
git add .husky/pre-commit
86+
```
87+
88+
尝试提交
89+
90+
```shell
91+
git commit -m "Keep calm and commit"
92+
```
93+
94+
如果 `npm test` 命令执行失败,你的提交会被自动终止。
95+
96+
::: warning 警告
97+
**想要使用 Yarn 运行命令?Git Bash 在 Windows 上有个问题,请参阅 [在 Windows 上使用 Yarn](./troubleshooting.md#在-windows-上使用-yarn)**
98+
:::
99+
100+
_对于 Windows 用户,如果在运行 `npx husky add ...` 时看到帮助信息,请尝试使用 `node node_modules/husky/lib/bin add ...`。这不是 husky 代码的问题,在 npm 8 的最新版本已经修复了。_
101+
102+
### 卸载
103+
104+
```shell
105+
npm uninstall husky && git config --unset core.hooksPath
106+
```
107+
108+
## Yarn 2
109+
110+
### 安装
111+
112+
1. 安装 `husky`
113+
114+
```shell
115+
yarn add husky --dev
116+
yarn add pinst --dev # ONLY if your package is not private
117+
```
118+
119+
2. 启用 Git hooks
120+
121+
```shell
122+
yarn husky install
123+
```
124+
125+
3. 要在安装后自动启用 Git hooks,请编辑 `package.json`
126+
127+
::: code-group
128+
129+
```js [package.json]
130+
{
131+
"private": true, // ← 你的 package 是私有的,你只需要 postinstall
132+
"scripts": {
133+
"postinstall": "husky install"
134+
}
135+
}
136+
```
137+
138+
:::
139+
140+
::: tip 提示
141+
如果您的软件包不是私有的,并且您正在像 [npmjs.com](https://npmjs.com) 这样的仓库上发布它,那么您需要使用 [pinst](https://github.com/typicode/pinst)\*\* 禁用 postinstall 脚本。否则,当有人安装你的软件包并导致错误时,将运行 postinstall。
142+
:::
143+
144+
::: code-group
145+
146+
```js [package.json]
147+
{
148+
"private": false, // ← 你的 package 是共有的
149+
"scripts": {
150+
"postinstall": "husky install",
151+
"prepack": "pinst --disable",
152+
"postpack": "pinst --enable"
153+
}
154+
}
155+
```
156+
157+
:::
158+
159+
### 卸载
160+
161+
`package.json` 中移除 `"postinstall": "husky install"`,并执行:
162+
163+
```shell
164+
yarn remove husky && git config --unset core.hooksPath
165+
```

‎docs/zh/guide.md

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
# 指南
2+
3+
## Monorepo
4+
5+
建议在根目录下的 `package.json` 中添加 husky。你可以使用诸如 [lerna](https://github.com/lerna/lerna) 和 filter 之类的工具来仅在已更改的包中运行脚本。
6+
7+
## 自定义目录
8+
9+
如果你想在另一个目录安装 husky,比如 `.config` 目录,你可以在 `install` 命令后面添加参数。示例如下:
10+
11+
::: code-group
12+
13+
```js [package.json]
14+
{
15+
"scripts": {
16+
"prepare": "husky install .config/husky"
17+
}
18+
}
19+
```
20+
21+
:::
22+
23+
另一种情况,如果你的 `package.json` 文件和 `.git` 目录不在同一级目录。例如,`project/.git``project/front/package.json`
24+
25+
设计上,`husky install` 必须运行在于 `.git` 相同的目录,但是你可以通过在 `prepare` 脚本中传入一个子目录来改变目录:
26+
27+
::: code-group
28+
29+
```js [package.json]
30+
{
31+
"scripts": {
32+
"prepare": "cd .. && husky install front/.husky"
33+
}
34+
}
35+
```
36+
37+
:::
38+
39+
在你的 hooks 中,你也需要去更改目录:
40+
41+
::: code-group
42+
43+
```shell [.husky/pre-commit]
44+
# ...
45+
cd front
46+
npm test
47+
```
48+
49+
:::
50+
51+
## 绕过 hooks
52+
53+
你能使用 Git命令的 `-n/--no-verify` 选项来绕过 `pre-commit``commit-msg` hooks:
54+
55+
```shell
56+
git commit -m "yolo!" --no-verify
57+
```
58+
59+
对于没有使用 `--no-verify` 选项的 Git 命令,你可以使用 `HUSKY` 环境变量:
60+
61+
```shell
62+
HUSKY=0 git push # yolo!
63+
```
64+
65+
## 在 CI/Docker/Prod 中禁用 husky
66+
67+
在 CI/Docker/Prod上下文中禁用 husky 没有对错之分,这在很大程度上 **取决于你的使用情况**
68+
69+
### 使用 npm
70+
71+
如果你想阻止 husky 完全安装
72+
73+
```shell
74+
npm ci --omit=dev --ignore-scripts
75+
```
76+
77+
或者,你也能明确地禁用 `prepare` 脚本
78+
79+
```shell
80+
npm pkg delete scripts.prepare
81+
npm ci --omit=dev
82+
```
83+
84+
### 使用自定义脚本
85+
86+
您可以创建一个自定义 JS 脚本,有条件地要求使用 husky 和安装 hooks。
87+
88+
::: code-group
89+
90+
```json [package.json]
91+
"prepare": "node ./prepare.js"
92+
```
93+
94+
```js [prepare.js]
95+
const isCi = process.env.CI !== undefined
96+
if (!isCi) {
97+
require('husky').install()
98+
}
99+
```
100+
101+
:::
102+
103+
或者在未安装 husky 的情况下,让 `prepare` 脚本无声地失败:
104+
Or make `prepare` script fail silently if husky is not installed:
105+
106+
```json [package.json]
107+
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
108+
```
109+
110+
### 使用环境变量
111+
112+
你可以在你的 CI 配置文件中,将 `HUSKY` 环境变量设置为 `0`,来禁用 hooks 安装。
113+
114+
另外,大多数持续集成服务器都会设置一个 `CI` 环境变量。你可以在钩子中使用它来检测是否在 CI 中运行。
115+
116+
::: code-group
117+
118+
```shell [.husky/pre-commit]
119+
# ...
120+
[ -n "$CI" ] && exit 0
121+
```
122+
123+
:::
124+
125+
### 使用 is-ci
126+
127+
您还可以在 `prepare` 脚本中使用 [is-ci](https://github.com/watson/is-ci),有条件地安装 husky
128+
129+
```shell
130+
npm install is-ci --save-dev
131+
```
132+
133+
::: code-group
134+
135+
```js [package.json]
136+
{
137+
"scripts": {
138+
"prepare": "is-ci || husky install"
139+
}
140+
}
141+
```
142+
143+
:::
144+
145+
## 测试 hooks
146+
147+
如果要测试 hook,可以在脚本末尾添加 `exit 1` 来终止 git 命令。
148+
149+
::: code-group
150+
151+
```shell [.husky/pre-commit]
152+
# ...
153+
exit 1 # Commit will be aborted
154+
```
155+
156+
:::
157+
158+
## Git-flow
159+
160+
如果使用 [git-flow](https://github.com/petervanderdoes/gitflow-avh/),需要确保 git-flow hooks 目录设置为使用 husky(默认为 `.husky`)。
161+
162+
```shell
163+
git config gitflow.path.hooks .husky
164+
```
165+
166+
**注意:**
167+
168+
- 如果在安装 husky 之后配置 git-flow,那么 git-flow 设置过程将正确地建议使用 `.husky` 目录。
169+
- 如果您已经为 husky 设置了一个 [自定义目录](#自定义目录),那么您需要指定这个目录(比如 `git config gitflow. path.hooks. config/husky`)
170+
171+
要将 Git-flow hook 目录 **恢复** 到默认目录,需要重置配置,使其指向默认的 Git hook 目录。
172+
173+
```shell
174+
git config gitflow.path.hooks .git/hooks
175+
```

‎docs/zh/index.md

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
[![Financial Contributors on Open Collective](https://opencollective.com/husky/all/badge.svg?label=financial+contributors)](https://opencollective.com/husky)
2+
3+
[![](https://img.shields.io/npm/dm/husky.svg?style=flat)](https://www.npmjs.org/package/husky)
4+
5+
[![Node.js CI](https://github.com/typicode/husky/workflows/Node.js%20CI/badge.svg)](https://github.com/typicode/husky/actions)
6+
7+
> 使现代的原生 Git Hooks 变得简单
8+
9+
Husky 能使你的提交变得更好 🐶 _汪!_
10+
11+
在提交或推送时,你可以用它来 **检查提交信息****运行测试****检查代码** 等。Husky 支持 [所有 Git hooks](https://git-scm.com/docs/githooks)
12+
13+
点击 [这里](./getting-started) 开始使用。
14+
15+
## 特点
16+
17+
- 轻量级,零依赖 (`6 kB`)
18+
- 由现代化的新 Git 特性驱动 (`core.hooksPath`)
19+
- 遵循 [npm](https://docs.npmjs.com/cli/v8/using-npm/scripts#best-practices)[Yarn](https://yarnpkg.com/advanced/lifecycle-scripts#a-note-about-postinstall)`自动安装` 最佳实践
20+
- 对用户友好的信息
21+
- Opt-in/opt-out
22+
- **支持**
23+
- macOS, Linux 和 Windows
24+
- Git GUIs
25+
- 自定义 hooks 目录
26+
- 嵌套项目
27+
- Monorepos
28+
29+
## 谁在使用
30+
31+
Husky 被运用在这些伟大的项目中:
32+
33+
- [webpack/webpack](https://github.com/webpack/webpack)
34+
- [angular/angular](https://github.com/angular/angular)
35+
- [angular/angular-cli](https://github.com/angular/angular-cli)
36+
- [angular/components](https://github.com/angular/components)
37+
- [vercel/hyper](https://github.com/vercel/hyper)
38+
- [blitz-js/blitz](https://github.com/blitz-js/blitz)
39+
- [facebook/docusaurus](https://github.com/facebook/docusaurus)
40+
- [typescript-eslint/typescript-eslint](https://github.com/typescript-eslint/typescript-eslint)
41+
- [11ty/eleventy](https://github.com/11ty/eleventy)
42+
- [stylelint/stylelint](https://github.com/stylelint/stylelint)
43+
- [rollup/rollup](https://github.com/rollup/rollup)
44+
- [tauri-apps/tauri](https://github.com/tauri-apps/tauri)
45+
- [NativeScript/NativeScript](https://github.com/NativeScript/NativeScript)
46+
- [formatjs/formatjs](https://github.com/formatjs/formatjs)
47+
- [react-bootstrap/react-bootstrap](https://github.com/react-bootstrap/react-bootstrap)
48+
- [react-dnd/react-dnd](https://github.com/react-dnd/react-dnd)
49+
- [react-grid-layout/react-grid-layout](https://github.com/react-grid-layout/react-grid-layout)
50+
- [snabbdom/snabbdom](https://github.com/snabbdom/snabbdom)
51+
- [logaretm/vee-validate](https://github.com/logaretm/vee-validate)
52+
- [zenorocha/clipboard.js](https://github.com/zenorocha/clipboard.js)
53+
- [NodeBB/NodeBB](https://github.com/NodeBB/NodeBB)
54+
- [ant-design/ant-design](https://github.com/ant-design/ant-design)
55+
- 还有 [**超过 110 万个项目**](https://github.com/typicode/husky/network/dependents?package_id=UGFja2FnZS0xODQzNTgwNg%3D%3D)
56+
57+
## 相关文章
58+
59+
- [Why husky has dropped conventional JS config](https://blog.typicode.com/husky-git-hooks-javascript-config/)
60+
- [Why husky doesn't autoinstall anymore](https://blog.typicode.com/husky-git-hooks-autoinstall/)
61+
62+
## 赞助者
63+
64+
你的公司在使用 Husky 吗?询问你的经理或者营销团队是否有兴趣支持这个项目。
65+
66+
<a href="https://opencollective.com/husky/tiers/company/0/website"><img src="https://opencollective.com/husky/tiers/company/0/avatar.svg?avatarHeight=120"></a>
67+
<a href="https://opencollective.com/husky/tiers/company/1/website"><img src="https://opencollective.com/husky/tiers/company/1/avatar.svg?avatarHeight=120"></a>
68+
<a href="https://opencollective.com/husky/tiers/company/2/website"><img src="https://opencollective.com/husky/tiers/company/2/avatar.svg?avatarHeight=120"></a>
69+
<a href="https://opencollective.com/husky/tiers/company/3/website"><img src="https://opencollective.com/husky/tiers/company/3/avatar.svg?avatarHeight=120"></a>
70+
<a href="https://opencollective.com/husky/tiers/company/4/website"><img src="https://opencollective.com/husky/tiers/company/4/avatar.svg?avatarHeight=120"></a>
71+
<a href="https://opencollective.com/husky/tiers/company/5/website"><img src="https://opencollective.com/husky/tiers/company/5/avatar.svg?avatarHeight=120"></a>
72+
<a href="https://opencollective.com/husky/tiers/company/6/website"><img src="https://opencollective.com/husky/tiers/company/6/avatar.svg?avatarHeight=120"></a>
73+
<a href="https://opencollective.com/husky/tiers/company/7/website"><img src="https://opencollective.com/husky/tiers/company/7/avatar.svg?avatarHeight=120"></a>
74+
<a href="https://opencollective.com/husky/tiers/company/8/website"><img src="https://opencollective.com/husky/tiers/company/8/avatar.svg?avatarHeight=120"></a>
75+
<a href="https://opencollective.com/husky/tiers/company/9/website"><img src="https://opencollective.com/husky/tiers/company/9/avatar.svg?avatarHeight=120"></a>
76+
77+
觉得哈士奇有用吗?成为一个支持者,并通过每月在 [Open Collective](https://opencollective.com/husky) 上的捐款来表达你的感激之情。你也可以通过一次性捐赠来给小费。
78+
79+
<a href="https://opencollective.com/husky" target="_blank"><img src="https://opencollective.com/husky/tiers/individual.svg?avatarHeight=32"/></a>
80+
81+
GitHub 的赞助商可以在我的 [个人资料](https://github.com/typicode) 中查看。所有过去和现在的 Open Collective 赞助商都可以在 [这里](https://opencollective.com/husky) 查看。

‎docs/zh/migrating-from-v4.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# 从 v4 迁移
2+
3+
## CLI
4+
5+
请参见 [husky-4-to-8](https://github.com/typicode/husky-4-to-8) CLI 以快速从 v4迁移到 v8。
6+
7+
## 手动迁移
8+
9+
如果使用 `npm``yarn` 调用 `package.json` 脚本,只需将配置文件中的命令 **复制** 到相应的钩子即可:
10+
11+
::: code-group
12+
13+
```js [.huskyrc.json (v4)]
14+
{
15+
"hooks": {
16+
"pre-commit": "npm test && npm run foo"
17+
}
18+
}
19+
```
20+
21+
```shell [.husky/commit-msg (v8)]
22+
# ...
23+
npm test
24+
npm run foo
25+
```
26+
27+
:::
28+
29+
如果您正在调用本地安装的二进制文件,**现在您需要通过您的包管理器运行它们**
30+
31+
::: code-group
32+
33+
```js [.huskyrc.json (v4)]
34+
{
35+
"hooks": {
36+
"pre-commit": "jest"
37+
}
38+
}
39+
```
40+
41+
```shell [.husky/commit-msg (v8)]
42+
# ...
43+
npx --no jest
44+
# or
45+
yarn jest
46+
```
47+
48+
:::
49+
50+
`HUSKY_GIT_PARAMS` 环境变量现在替换为原生参数 `$1``$2`
51+
52+
::: code-group
53+
54+
```js [.huskyrc.json (v4)]
55+
{
56+
"hooks": {
57+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
58+
}
59+
}
60+
```
61+
62+
```shell [.husky/commit-msg (v8)]
63+
# ...
64+
npx --no -- commitlint --edit $1
65+
# or
66+
yarn commitlint --edit $1
67+
```
68+
69+
:::
70+
71+
其他环境变量改动:
72+
73+
- `HUSKY_SKIP_HOOKS` 替换为 `HUSKY`
74+
- `HUSKY_SKIP_INSTALL` 替换为 `HUSKY`
75+
- `HUSKY_GIT_PARAMS` 已被移除。取而代之的是,Git 参数应该直接在脚本中使用(例如 `$1`)。
76+
- 本地安装工具的 `PATH` 不再自动设置。你需要使用包管理器来运行它们。

‎docs/zh/troubleshooting.md

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# 疑难解答
2+
3+
## 找不到命令
4+
5+
如果您在应用程序中运行 Git,而命令可以在终端中找到,这意味着应用程序中的 `PATH` 与终端中的不同。
6+
7+
你可以在终端中使用 `echo $PATH` 命令,然后配置你的应用为相同的值。
8+
9+
如果你使用 `brew` 安装了你的命令,请参阅 [Homebrew FAQ](https://docs.brew.sh/FAQ),让你的应用程序可以使用你的命令。
10+
11+
最后,如果你正在使用管理版本的脚本,例如 `nvm``n``rbenv``pyenv`......你可以在运行 hooks 之前使用 `~/.huskyrc` 加载必要的脚本。
12+
Finally, if you're using a script for managing versions like `nvm`, `n`, `rbenv`, `pyenv`, ... you can use `~/.huskyrc` to load the necessary before running hooks.
13+
14+
例如,对于 nvm,可以使用:
15+
16+
::: code-group
17+
18+
```shell [~/.huskyrc]
19+
# This loads nvm.sh, sets the correct PATH before running hook, and ensures the project version of Node
20+
export NVM_DIR="$HOME/.nvm"
21+
22+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
23+
24+
# If you have an .nvmrc file, we use the relevant node version
25+
if [[ -f ".nvmrc" ]]; then
26+
nvm use
27+
fi
28+
```
29+
30+
:::
31+
32+
::: info 注意
33+
对于某些应用程序(如 VS Code),只需重启应用程序即可解决此问题。在采取上述任何步骤之前,请先尝试一下!\*\*
34+
:::
35+
36+
## Hooks 未运行
37+
38+
1. 确保文件名中没有错别字。例如 `precommit``pre-commit.sh` 都是无效名称。有关有效名称,请参阅 Git hooks [文档](https://git-scm.com/docs/githooks)
39+
2. 检查 `git config core.hooksPath` 是否返回 `.husky`(或你的自定义 hook 目录)。
40+
3. 确认钩子文件是可执行的。使用 `husky add` 命令时会自动设置为可执行,但可以运行 `chmod +x .husky/<hookname>` 来修复。
41+
4. 检查 Git 版本是否大于 `2.9`
42+
43+
## 卸载后 .git/hooks/ 无法运行
44+
45+
如果卸载 `husky` 后,`.git/hooks/` 中的 hooks 不起作用。运行 `git config --unset core.hooksPath`
46+
47+
注意:如果 `npm <7` 在卸载 husky 时会自动执行此操作,但现在已不支持 `preuninstall`
48+
49+
## 在 Windows 上使用 Yarn
50+
51+
在 Windows 上使用 Yarn 和 Git Bash(`stdin 不是 tty`)时,Git hooks 可能会失败。如果用户使用的是 Windows 系统,强烈建议添加以下解决方案。
52+
53+
1. 创建 `.husky/common.sh`:
54+
55+
```shell
56+
command_exists () {
57+
command -v "$1" >/dev/null 2>&1
58+
}
59+
60+
# Workaround for Windows 10, Git Bash and Yarn
61+
if command_exists winpty && test -t 1; then
62+
exec < /dev/tty
63+
fi
64+
```
65+
66+
2. 在使用 Yarn 运行命令的地方输入源代码:
67+
68+
```shell
69+
#!/usr/bin/env sh
70+
. "$(dirname -- "$0")/_/husky.sh"
71+
. "$(dirname -- "$0")/common.sh"
72+
73+
yarn ...
74+
```
75+
76+
## 它能在 Windows 上运行吗?
77+
78+
可以。在 Windows 上安装 Git 时,会附带运行 shell 脚本所需的软件。

‎package-lock.json

+749-304
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@types/node": "^20.1.4",
3636
"@typicode/eslint-config": "^1.1.0",
3737
"typescript": "^5.0.4",
38-
"vitepress": "^1.0.0-alpha.75"
38+
"vitepress": "^1.0.0-beta.6"
3939
},
4040
"engines": {
4141
"node": ">=16"

0 commit comments

Comments
 (0)
Please sign in to comment.