SAP-samples / successfactors-extension-calculate-employee-seniority

The publication is a sample extension to SAP SuccessFactors to manage seniority adjustments based on business events, using the SAP Business Technology Platform.
https://discovery-center.cloud.sap/missiondetail/3550/3591
Apache License 2.0
10 stars 47 forks source link

Error during NPM Install for ERR code EINTEGRITY #15

Closed muditbatraschwarz closed 2 years ago

muditbatraschwarz commented 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 }

muditbatraschwarz commented 2 years ago

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" },