evanTheTerribleWarrior / Twilio-Outbound-Messaging

MIT License
23 stars 5 forks source link

"Sill Reify Mark Deleted" #4

Open impactsarah opened 7 months ago

impactsarah commented 7 months ago

image

Hello, I'm trying to install the serverless and am receiving this error message. Could you please assist?

C:\Users\sarah\Twilio-Outbound-Messaging\serverless>npm install npm WARN EBADENGINE Unsupported engine { npm WARN EBADENGINE package: 'outbound-messaging-v2@2.0.0', npm WARN EBADENGINE required: { node: '12' }, npm WARN EBADENGINE current: { node: 'v20.12.0', npm: '10.5.0' } npm WARN EBADENGINE } [#########.........] | reify:fsevents: sill reify mark deleted [

evanTheTerribleWarrior commented 7 months ago

hello, this seems to be related to the node version in the "package.json" versus what you have in your system (which is newer). Seems also to be a WARN rather than error, does it stop the installation after this is thrown?

You can also go to package.json and change the "engines" object to be like this "engines": { "node": ">=12" } (or set it to the exact version you have i.e. 20)

and retry