On a freshly unzipped extension tools folder, vers...
# suitecommerce
c
On a freshly unzipped extension tools folder, version
2025.1.0
, I ran
npm i
and I'm getting this error:
npm ERR! Cannot find module 'minipass'
. I can't tell is this is an npm error or an extension tools error. Anyone ran into this one?
t
not a new version but on older versions yes. I used the documented node and npm versions but many of the underlying modules in that version had ouddated packages. I had to resolve each module one by one
c
"resolve each module one by one" - what does that mean?
t
I can't specifically recall but I think I had to adjust each module in the node_modules folder. I had to get the latest available version where all the dependencies were still present
👀 1
c
wow
t
basically downgrade either by modifying the package.json in the module or running specific version commands npm install gulp-ttf2eot@1.0.1 ttf2eot@2.0.1 --save-dev or modfiy package.json "gulp-uglify": "2.1.2", "uglify-js": "2.8.29"
🙏🏻 1
it took me a few hours to resolve about 10 issues