Prerequisites
Issue
Hello.
I just stumbled upon this on the fastify-cli repository : fastify/fastify-cli#449
What is the issue ?
The issue here is that since dotenv@11.0.0 the minimum required Node.js version is >=12 while fastify-cli currently support Node.js 10 (note that there is no { "engines": { "node": ">=10" } } in the package.json file, but the CI configuration trigger a run on Node.js 10).
And while dotenv officially support only Node.js 12 and greater they have not introduced any actual breaking change for now leading the CI to run without a single problem in fastify-cli repository.