Is there a way to update the version of node runni...
# seed
j
Is there a way to update the version of node running in the build system? I'm getting a failing build because the system is running
v14.15.4
which is over a year old:
error @typescript-eslint/eslint-plugin@5.11.0: The engine "node" is incompatible with this module. Expected version "^12.22.0 || ^14.17.0 || >=16.0.0". Got "14.15.4" error Found incompatible module.
f
Hey @Jared Burke, you can pin the node version by adding a buildspec. Here’s an example https://seed.run/blog/node-v14-support.html
j
🙏 Thank you! Have a buildspec already, must have missed that option!