Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 476 Bytes

flat-lobsters-whisper.md

File metadata and controls

20 lines (18 loc) · 476 Bytes
@pnpm/plugin-commands-installation pnpm
minor
minor

Overrides may be defined as a reference to a spec for a direct dependency by prefixing the name of the package you wish the version to match with a $.

{
  "dependencies": {
    "foo": "^1.0.0"
  },
  "overrides": {
    // the override is defined as a reference to the dependency
    "foo": "$foo",
    // the referenced package does not need to match the overridden one
    "bar": "$foo"
  }
}