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
Nodejs 18 and higher included a security patch for CVE-2024-27980. This patch prevents executing .bat or .cmd commands from child processes. This lib calls npm.cmd, thus it doesn't work on Nodejs 18 or higher on Windows.
Note: I worked around this by dropping down to Node 16, but I think the following should also work:
Nodejs 18 and higher included a security patch for CVE-2024-27980. This patch prevents executing
.bat
or.cmd
commands from child processes. This lib callsnpm.cmd
, thus it doesn't work on Nodejs 18 or higher on Windows.Note: I worked around this by dropping down to Node 16, but I think the following should also work:
npx --security-revert=CVE-2024-27980 ng-publish-to-git
The text was updated successfully, but these errors were encountered: