Closed muditbatraschwarz closed 2 years ago
During NPM installed, it shows an error : npm WARN EBADENGINE Unsupported engine { npm WARN EBADENGINE package: 'seniority-calc@1.0.0', npm WARN EBADENGINE required: { node: '14.x' }, npm WARN EBADENGINE current: { node: 'v16.16.0', npm: '8.19.2' } npm WARN EBADENGINE }
The issue has been resolved by changing the version from 14.x to >=16.0.0 in the package.json file as shown below:-
"engines": { "node": ">=16.0.0" },
During NPM installed, it shows an error : npm WARN EBADENGINE Unsupported engine { npm WARN EBADENGINE package: 'seniority-calc@1.0.0', npm WARN EBADENGINE required: { node: '14.x' }, npm WARN EBADENGINE current: { node: 'v16.16.0', npm: '8.19.2' } npm WARN EBADENGINE }