Breaking Changes
- new
node_modules
structure.- all the hard linked dependencies are inside
node_modules/.pnpm
(#1636, @zkochan) - all the hoisted dependencies are symlinked into
node_modules/.pnpm/node_modules
. So application code has no access to the hoisted packages but dependencies have. (#1998, @zkochan) - the current lockfile is moved from
node_modules/.pnpm-lock.yaml
tonode_modules/.pnpm/lock.yaml
(#2018, @zkochan)
- all the hard linked dependencies are inside
shamefully-flatten
renamed toshamefully-hoist
. (@zkochan)hoist-pattern
is*
by default. All packages are hoisted but application code has access only to listed dependencies. So the buggy ecosystem packages will work but pnpm will prevent users from requiring packages that are not declared inpackage.json
. (@zkochan)- all globally installed packages are always hoisted. (@zkochan)
pnpm add
fails if no packages are specified (5f73a7c, @zkochan)pnpm install
installs all dependencies of all workspace packages when executed inside a workspace (5f73a7c, @zkochan)independent-leaves
is only allowed with hoisting turned off (f3d5037, @zkochan)pnpm outdated
does not print details by default. To should details, use the--long
flag (#2017, @aparajita)- the root
package.json
is always included in the workspace (#2021, @ExE-Boss) - the CLI fails with unknown/incompatible options (#1645, @zkochan)
- fails because of unknown option:
pnpm install --foo
- fails because of incompatible option:
pnpm remove foo --save-exact
- fails because of unknown option:
- the default resolution-strategy is
fewer-dependencies
instead offast
(#2042, @zkochan) - changes in the way packages are imported from the store (#2043, @zkochan):
- package-import-method does not support
reflink
anymore. Useclone
instead, which is a cross-platform alternative. - by default, pnpm will clone packages on systems that support it. If cloning is not supported, pnpm will link packages from the store. If hard links are also not supported, pnpm will copy the packages.
- package-import-method does not support
Features
- new config settings:
- hoist:
true
by default. Whenfalse
, pnpm will not hoist any dependencies in node_modules, preventing dependencies inside node_modules from accessing unlisted dependencies. (#2004, @zkochan) - hoist-pattern:
*
by default. All packages matching this pattern will be hoisted. For example, you can choose to hoist only eslint packages:hoist-pattern=eslint-*
. By default, all packages are hoisted. (#1997, #1998, @zkochan) - shamefully-hoist: same as
shamefully-flatten
in previous versions of pnpm. The project's code has access to hoisted dependencies. (#2006, @zkochan)
- hoist:
- pnpm outdated:
- restyle the
pnpm outdated
output for readability (#2007, @aparajita)
pnpm outdated --no-table
prints a list of outdated packages instead of a table (#2026, @aparajita)
- restyle the
- nicer output of the
--help
commands (#2013, @zkochan)
- new command:
pnpm why <package>
(#2015, @ExE-Boss)