.pnpmfile.cjs
pnpm lets you hook directly into the installation process via special functions
(hooks). Hooks can be declared in a file called .pnpmfile.cjs
.
By default, .pnpmfile.cjs
should be located in the same directory as the
lockfile. For instance, in a workspace with a shared lockfile,
.pnpmfile.cjs
should be in the root of the monorepo.
Hooks
TL;DR
Hook Function | Processus | Uses |
---|---|---|
hooks.readPackage(pkg, context): pkg | Appelé après que pnpm ait analysé le manifeste du paquet de la dépendance | Allows you to mutate a dependency's package.json |
hooks.afterAllResolved(lockfile, context): lockfile | Appelé après que les dépendances aient été résolues. | Permet de modifier le fichier lockfile |
hooks.readPackage(pkg, context): pkg | Promise<pkg>
Allows you to mutate a dependency's package.json
after parsing and prior to
resolution. Ces mutations ne sont pas enregistrées dans le système de fichiers, cependant, elles
affecteront ce qui est résolu dans le fichier lockfile et donc ce qui est installé.
Note that you will need to delete the pnpm-lock.yaml
if you have already
resolved the dependency you want to modify.
If you need changes to package.json
saved to the filesystem, you need to use the pnpm patch
command and patch the package.json
file.
This might be useful if you want to remove the bin
field of a dependency for instance.
Arguments
pkg
- The manifest of the package. Either the response from the registry or thepackage.json
content.context
- Context object for the step. Method#log(msg)
allows you to use a debug log for the step.
Utilisation
Example .pnpmfile.cjs
(changes the dependencies of a dependency):
function readPackage(pkg, context) {
// Override the manifest of foo@1.x after downloading it from the registry
if (pkg.name === 'foo' && pkg.version.startsWith('1.')) {
// Replace bar@x.x.x with bar@2.0.0
pkg.dependencies = {
...pkg.dependencies,
bar: '^2.0.0'
}
context.log('bar@1 => bar@2 in dependencies of foo')
}
// This will change any packages using baz@x.x.x to use baz@1.2.3
if (pkg.dependencies.baz) {
pkg.dependencies.baz = '1.2.3';
}
return pkg
}
module.exports = {
hooks: {
readPackage
}
}
Limitations connues
Removing the scripts
field from a dependency's manifest via readPackage
will
not prevent pnpm from building the dependency. When building a dependency, pnpm
reads the package.json
of the package from the package's archive, which is not
affected by the hook. In order to ignore a package's build, use the
pnpm.neverBuiltDependencies field.
hooks.afterAllResolved(lockfile, context): lockfile | Promise<lockfile>
Vous permet de modifier la sortie du fichier de verrouillage avant qu’elle ne soit sérialisée.
Arguments
lockfile
- The lockfile resolutions object that is serialized topnpm-lock.yaml
.context
- Context object for the step. Method#log(msg)
allows you to use a debug log for the step.
Exemple d'utilisation
function afterAllResolved(lockfile, context) {
// ...
return lockfile
}
module.exports = {
hooks: {
afterAllResolved
}
}
Limitations connues
Il n'y en a pas - tout ce qui peut être fait avec le fichier de verrouillage peut être via cette fonction, et vous pouvez même étendre les fonctionnalités du fichier de verrouillage.
Configuration associée
ignore-pnpmfile
- Default: false
- Type: Boolean
.pnpmfile.cjs
will be ignored. Useful together with --ignore-scripts
when you
want to make sure that no script gets executed during install.
pnpmfile
- Default: .pnpmfile.cjs
- Type: path
- Example: .pnpm/.pnpmfile.cjs
L'emplacement du pnpmfile local.
global-pnpmfile
- Default: null
- Type: path
- Example: ~/.pnpm/global_pnpmfile.cjs
L'emplacement du pnpmfile global. Un fichier pnpm global est utilisé par tous les projets lors de l'installation.
Il est recommandé d'utiliser les fichiers pnpmfiles locaux. N'utilisez un pnpmfile global que si vous utilisez pnpm sur des projets qui n'utilisent pas pnpm comme gestionnaire de packages principal.