When attempting to install cookie thief fresh with npm install --save cookie-thief, I get an error during the postinstall step:
Error: Cannot find module 'C:\Users\Luis\Code\my-project\node_modules\cookie-thief\node_modules\platform-dependent-modules\cli.js'
it looks like the issue is that it's searching for the platform-dependent-modules module in the node_modules folder of cookie-thief instead of in the node_modules folder of the project during the postinstall script. I'm not sure if node has some sort of variable for the project root that can be used here instead.
When attempting to install cookie thief fresh with
npm install --save cookie-thief, I get an error during the postinstall step:it looks like the issue is that it's searching for the
platform-dependent-modulesmodule in the node_modules folder ofcookie-thiefinstead of in the node_modules folder of the project during the postinstall script. I'm not sure if node has some sort of variable for the project root that can be used here instead.