You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: "Dist" step failed in Jenkins with ELSPROBLEMS (#2831)
The "Dist" step in the release process in Jenkinsfile was failing with
npm ERR! code ELSPROBLEMS
npm ERR! missing: @babel/cli@^7.8.4, required by [email protected]
... ditto for every *dev* dependency ...
The part that was actually failing was 'npm ls --omit=dev --all --parseable'
in "gen-notice.sh" when run in a dist try that only has the non-dev deps
installed.
The issue was a too-old npm: node 16.15.0 includes npm 8.5.5, but we
require npm v8.7.0 to get support for 'npm ls --omit=dev ...'
(npm/cli#4744).
0 commit comments