Features
-
Added a new setting:
public-hoist-pattern
. This setting can be overwritten byshamefully-hoist
. The default value ofpublic-hoist-pattern
is@types/*
.If
shamefully-hoist
istrue
,public-hoist-pattern
is set to*
.If
shamefully-hoist
isfalse
,public-hoist-pattern
is set to nothing.public-hoist-pattern
example configuration (through a.npmrc
file):public-hoist-pattern[]=@types/* public-hoist-pattern[]=@angular/*
Related PR: #2631
-
Don't request the full metadata of package when running
pnpm outdated
orpnpm publish -r
(#2633)