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
I think this error occurs because when you install the package, it does npm run build (started from prepublish scipt in package.json).
As I understand it, this bug is caused by breaking change on node >=v17, and on other hand caused from prepublish script in package.json.
So a solution would be to rename prepublish -> prepublishOnly.
Because :
prepublish is deprecated
when i run 'npm install`, and install dependency i don't want to do build library.
For example most popular libraries from npm (express or grunt) don't do build when i install these libraries. He provide from start folder as /lib
The text was updated successfully, but these errors were encountered:
Hi everybody. I have a problem to install it with node v18.16.0
Moment when error appear https://i.imgur.com/TS8Dasp.png
Error message: Error: error:0308010C:digital envelope routines::unsupported
Error screenshot: https://i.imgur.com/LElVMCR.png
I think this error occurs because when you install the package, it does
npm run build
(started from prepublish scipt in package.json).As I understand it, this bug is caused by breaking change on node >=v17, and on other hand caused from
prepublish
script in package.json.So a solution would be to rename
prepublish
->prepublishOnly
.Because :
prepublish
is deprecatedFor example most popular libraries from npm (express or grunt) don't do build when i install these libraries. He provide from start folder as /lib
The text was updated successfully, but these errors were encountered: