banner-cli
banner-cli copied to clipboard
Unsupported engine for [email protected]:
npm WARN notsup Unsupported engine for [email protected]: wanted: {"node":"^12.18.0","npm":"^6.14.5"} (current: {"node":"14.7.0","npm":"6.14.8"})
npm WARN notsup Not compatible with your version of node/npm: [email protected]
npm WARN notsup Unsupported engine for [email protected]: wanted: {"node":"^12.18.0","npm":"^6.14.5"} (current: {"node":"14.7.0","npm":"6.14.8"})
npm WARN notsup Not compatible with your version of node/npm: [email protected]
This is because the engines
field is restricted to Node 12--so any other versions will produce the warning.
I got this same warning when using node 14. But I've verified the package does indeed work on node 14 :)
@cjpatoilo would you accept a PR by me to edit the engines
field to the support versions to include node 14? Once that's done, it should fix the warnings.