首页 > 解决方案 > 使用特定节点版本运行 git pre-commit hook

问题描述

我正在处理多个 nodejs 项目并使用nave.

在其中一个项目中,有一个预提交挂钩失败,因为我全局安装的节点是 12.6,但是该项目需要 < 12.6:

> git add -A -- .
> git commit --quiet --allow-empty-message --file - --all
Running commit hook for:
    - ESLint
    - Codeowners
[2K[1A[2K[1A    - ESLint
    - Codeowners
[2K[1A[2K[1A    - ESLint
    - Codeowners
[2K[1A[2K[1A    - ESLint
    - Codeowners
[2K[1A[2K[1A    - ESLint
  ✅  - Codeowners
[2K[1A[2K[1A    - ESLint
  ✅  - Codeowners
[2K[1A[2K[1A  ❌  - ESLint
  ✅  - Codeowners

Results for ESLint
yarn run v1.17.3
warning From Yarn 1.0 onwards, scripts don't require "--" for options to be forwarded. In a future version, any explicit "--" will be forwarded as-is to the scripts.
error my-project@1.1.0: The engine "node" is incompatible with this module. Expected version ">=10.13 <12.6". Got "12.6.0"
error Commands cannot run with an incompatible environment.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

有什么方法可以更改 vscode 或 Git 扩展使用的节点版本?

标签: visual-studio-code

解决方案


推荐阅读