I'm having issue deploying to seed. I get an error...
# seed
s
I'm having issue deploying to seed. I get an error related to my node engine:
The engine "node" is incompatible with this module. Expected version "16.13.0". Got "14.15.4"
I can see in docs you don't support 16 - When I use a node engine less than 14 it breaks a dependancy I use:
error semantic-release@18.0.0: The engine "node" is incompatible with this module. Expected version ">=14.17". Got "14.15.4" error Found incompatible module.
When will support for v16 be added to product + how can I specify node version for build image?
r
You could add a seed.yml in the root of your project and set
Copy code
before_compile:
  - n 14.17.4
That should be high enough to satisfy your library
Or a later v14 node (14.17.4 is the current lambda image version)
f
Thanks @Ross Coundon
@Sam Frampton yeah you can pin the Nodejs version as Ross suggested
s
Thanks @Ross Coundon & @Frank