no notes
no notes
Experimental. A new hook is supported for updating configuration settings. The hook can be provided via .pnpmfile.cjs
. For example:
module.exports = {
hooks: {
updateConfig: (config) => ({
...config,
nodeLinker: "hoisted",
}),
},
};
Now you can use the pnpm add
command with the --config
flag to install new configurational dependencies #9377.
!/
in pnpm-workspace.yaml
. This fixes a regression introduced by #9169.pnpm audit --fix
should update the overrides in pnpm-workspace.yaml
.pnpm link
should update overrides in pnpm-workspace.yaml
, not in package.json
#9365.