2018-01-08 19:27:26 +02:00
2018-01-03 03:12:28 +02:00
2018-01-03 03:14:08 +02:00
2017-06-05 19:39:29 +03:00
2017-06-05 19:39:29 +03:00
2017-10-07 14:36:18 +03:00
2018-01-02 23:28:43 +02:00
2018-01-03 03:12:28 +02:00
2018-01-02 23:26:33 +02:00
2018-01-03 03:12:28 +02:00
2017-11-06 23:36:27 +02:00
2017-11-06 23:36:27 +02:00

pnpm-shrinkwrap

Build Status

pnpm's shrinkwrap

Reads and writes the public (shrinkwrap.yaml) and private (node_modules/.shrinkwrap.yaml) shrinkwrap files of pnpm. Shrinkwrap files are the state files of the node_modules installed via pnpm. They are like the package-lock.json of npm or the yarn.lock of Yarn.

Install

npm i pnpm-shrinkwrap

API

readWanted(pkgPath, opts) => Promise<Shrinkwrap>

Alias: read

Reads the shrinkwrap.yaml file from the root of the package.

Arguments

  • pkgPath - Path - the path to the project
  • opts.ignoreIncompatible - Boolean - false by default. If true, throws an error if the shrinkwrap file format is not compatible with the current library.

readCurrent(pkgPath, opts) => Promise<Shrinkwrap>

Alias: readPrivate

Reads the shrinkwrap file from node_modules/.shrinkwrap.yaml.

write(pkgPath, wantedShrinkwrap, currentShrinkwrap) => Promise<void>

Writes the wanted/current shrinkwrap files. When they are empty, removes them.

writeWantedOnly(pkgPath, wantedShrinkwrap) => Promise<void>

Writes the wanted shrinkwrap file only. Sometimes it is needed just to update the wanted shrinkwrap without touching node_modules.

prune(shrinkwrap, package) => Promise<Shrinkwrap>

Prunes a shrinkwrap file. Prunning means removing packages that are not referenced.

License

MIT

Description
No description provided
Readme MIT 295 MiB
Languages
TypeScript 98.8%
JavaScript 0.8%
Shell 0.4%