pnpm patch <pkg>
Prepara un pacchetto per l'applicazione delle patch (ispirato a un comando simile in Yarn).
Questo comando farà sì che un pacchetto venga estratto in una directory temporanea destinata a essere modificabile a piacimento.
Once you're done with your changes, run pnpm patch-commit <path>
(with <path>
being the temporary directory you received) to generate a patchfile and register it into your top-level manifest via the patchedDependencies
field.
Utilizzo:
pnpm patch <pkg name>@<version>
If you want to change the dependencies of a package, don't use patching to modify the package.json
file of the package. For overriding dependencies, use overrides or a package hook.
Opzioni
--edit-dir <dir>
Il pacchetto che deve essere corretto verrà estratto in questa directory.
--ignore-existing
Ignora i file di patch esistenti durante l'applicazione delle patch.