Hello all. Question here. We are trying to install...
# pact-js
a
Hello all. Question here. We are trying to install a pact-js for our project that is using node 12. Unfortunately the Node version supported by latest pact-js version is Node 16. For previous pact-js version, github has a note saying: (https://github.com/pact-foundation/pact-js#requirements) make sure the ignore-scripts option is disabled... So what does that mean? do I run the command as
npm i @pact-foundation/pact@11.0.2 --ignore-scripts
or I do something like:
npm config set ignore-scripts false
npm i @pact-foundation/pact@11.0.2
m
It just means you shouldn't use the option to disable scripts. I.e. install in the usual way
thankyou 1