pnpm should respect configuration settings from ~/.npmrc.
With below settings in ~/.npmrc
save=true
save-exact=true
pnpm should install dep and add it to package json with exact version number just by firing install command:
pnpm install rimraf
Currently, I have to pass those options separately:
pnpm install --save --save-exact rimraf
pnpm should respect configuration settings from ~/.npmrc.
With below settings in ~/.npmrc
save=true
save-exact=true
pnpm should install dep and add it to package json with exact version number just by firing install command:
pnpm install rimrafCurrently, I have to pass those options separately:
pnpm install --save --save-exact rimraf