18 lines
755 B
Plaintext
18 lines
755 B
Plaintext
# 使用淘宝镜像源
|
|
registry = https://registry.npmmirror.com
|
|
# registry = https://registry.npmjs.org
|
|
|
|
# 根据需要提升含有以下的依赖包到根 node_modules 目录下
|
|
public-hoist-pattern[]=husky
|
|
public-hoist-pattern[]=*eslint*
|
|
public-hoist-pattern[]=*prettier*
|
|
public-hoist-pattern[]=lint-staged
|
|
public-hoist-pattern[]=*stylelint*
|
|
public-hoist-pattern[]=@commitlint/cli
|
|
public-hoist-pattern[]=core-js
|
|
|
|
# 提升所有依赖到根 node_modules 目录下,相当于 public-hoist-pattern[]=*,与上面一种方式一般二选一使用
|
|
# 极不推荐用这样的方式解决依赖问题,这样没有充分利用 pnpm 依赖访问安全性的优势,又走回了 npm / yarn 的老路。
|
|
# shamefully-hoist=true
|
|
|
|
enable-pre-post-scripts=true |