postinstall script is triggered too soon
Hi I am facing an issue with deploying Nuxt to Cloudflare Pages via Nitro preset.
It looks that during the build, Cloudflare trigger another job called "Installing dependencies" immediately when repo is cloned, but then it triggers my
In my build command I'set install explicitly
It looks that during the build, Cloudflare trigger another job called "Installing dependencies" immediately when repo is cloned, but then it triggers my
postinstall script which call nuxt prepare and it looks that not all deps are already installed at this moment so I am getting an error, especially with Pinia[error] Cannot find module 'pinia/dist/pinia.mjs'In my build command I'set install explicitly
pnpm i && pnpm build so how can I prevent to trigger postinstall before my build command is called?