We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Considering the following package.json:
package.json
{ "dependencies": { "uuid": "8.3.2", "request": "2.88.2" } }
this will install the following (among others):
|- node_modules |- uuid // version 8.3.2 |- request |- node_modules |- uuid // version 3.4.0
filing-cabinet -d ./ -f ./node_modules/request/lib/auth.js uuid yields
filing-cabinet -d ./ -f ./node_modules/request/lib/auth.js uuid
/node_modules/uuid/dist/index.js
instead of
/node_modules/request/node_modules/uuid/index.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Considering the following
package.json
:this will install the following (among others):
filing-cabinet -d ./ -f ./node_modules/request/lib/auth.js uuid
yields
/node_modules/uuid/dist/index.js
instead of
/node_modules/request/node_modules/uuid/index.js
The text was updated successfully, but these errors were encountered: