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
installing open commit with the following command: npm i -g opencommit@latest is returning the following warning:
npm warn deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
Expected Behavior
should not return the error
Current Behavior
it is returning the error
Possible Solution
use the native crypto package as suggested, eventually with a polyfield
Steps to Reproduce
just install the package with npm i -g opencommit@latest on node 22.9.0
Relevant log output
% npm i -g opencommit@latest
npm warn deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
The text was updated successfully, but these errors were encountered:
This is actually causing a conflict with the rest of our code, which is trying to use the native node package, but makes it try to pull in the crypto package that's installed as a dependency here. We had to back out opencommit and remove it for now
Opencommit Version
3.2.2
Node Version
22.9.0
NPM Version
10.8.3
What OS are you seeing the problem on?
Mac
What happened?
installing open commit with the following command:
npm i -g opencommit@latest
is returning the following warning:Expected Behavior
should not return the error
Current Behavior
it is returning the error
Possible Solution
use the native crypto package as suggested, eventually with a polyfield
Steps to Reproduce
just install the package with npm i -g opencommit@latest on node 22.9.0
Relevant log output
The text was updated successfully, but these errors were encountered: