Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 543 Bytes

angry-hounds-bow.md

File metadata and controls

22 lines (19 loc) · 543 Bytes
@pnpm/core @pnpm/plugin-commands-installation @pnpm/resolve-dependencies @pnpm/types
minor
minor
minor
minor

A new setting supported in the pnpm section of the package.json file: allowNonAppliedPatches. When it is set to true, non-applied patches will not cause an error, just a warning will be printed. For example:

{
  "name": "foo",
  "version": "1.0.0",
  "pnpm": {
    "patchedDependencies": {
      "express@4.18.1": "patches/express@4.18.1.patch"
    },
    "allowNonAppliedPatches": true
  }
}