I have the following folder structure:
|-- node_modules
| |-- puppeteer
| |-- package.json
|- package.json
|-index.js
In the node_modules/puppeteer/package.json
file there is a script I want to run from my package.json
file using pnpm
. I know how to achieve this using npm
:
pnpm run postinstall --prefix node_modules/puppeteer
But is it possible using pnpm
instead?