| David Ffrench Couple of questions on this one. According to this SO article's top answer - engine-strict is now deprecated The new way is to run the following:
npm config set engine-strict true
|
which has to be run by the installer This works with npm install, i get the following output
pm ERR! code ENOTSUP |
npm ERR! notsup Unsupported engine for mobile-security-service-ui@0.1.0: wanted: {"node":">=10"} (current: {"node":"8.15.0","npm":"6.4.1"}) |
npm ERR! notsup Not compatible with your version of node/npm: mobile-security-service-ui@0.1.0 |
npm ERR! notsup Not compatible with your version of node/npm: mobile-security-service-ui@0.1.0 |
npm ERR! notsup Required: {"node":">=10"} |
npm ERR! notsup Actual: {"npm":"6.4.1","node":"8.15.0"}
|
I was hoping to add that to `make serve` but... Now for the bad news: `npm ci` ignores it - see here, and the issues has been closed by npm due to inactivity. cc Damien Murphy |