Skip to content

Instantly share code, notes, and snippets.

@aseemk
Last active December 26, 2015 10:59
Show Gist options
  • Save aseemk/7140369 to your computer and use it in GitHub Desktop.
Save aseemk/7140369 to your computer and use it in GitHub Desktop.
npm shrinkwrap issues w/ de-duped production + dev dependencies

Install a dev dependency, then install a production dependency that (internally) depends on that same dev dependency. (Should you have to know that? Is that not an implementation detail?)

Then shrinkwrap for production, and note the missing nested dependency.

npm init
npm install [email protected] --save-dev
npm install strong-agent --save
npm shrinkwrap
{
"name": "shrinkwrap-test-devdeps1",
"version": "0.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"strong-agent": "~0.2.15"
},
"devDependencies": {
"request": "~2.27.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "BSD-2-Clause"
}
{
"name": "shrinkwrap-test-devdeps",
"version": "0.0.0",
"dependencies": {
"strong-agent": {
"version": "0.2.15",
"from": "strong-agent@~0.2.15",
"dependencies": {
"async": {
"version": "0.1.22",
"from": "async@~0.1.22"
},
"measured": {
"version": "0.1.3",
"from": "measured@~0.1"
},
"restler": {
"version": "2.0.1",
"from": "[email protected]"
},
"zeparser": {
"version": "0.0.7",
"from": "zeparser@*"
},
"underscore": {
"version": "1.5.2",
"from": "[email protected]"
},
"uhura": {
"version": "0.0.10",
"from": "uhura@stable",
"dependencies": {
"JSONStream": {
"version": "0.6.4",
"from": "[email protected]",
"dependencies": {
"jsonparse": {
"version": "0.0.5",
"from": "[email protected]"
},
"through": {
"version": "2.2.7",
"from": "through@~2.2.7"
}
}
},
"connect": {
"version": "2.8.8",
"from": "[email protected]",
"dependencies": {
"qs": {
"version": "0.6.5",
"from": "[email protected]"
},
"formidable": {
"version": "1.0.14",
"from": "[email protected]"
},
"cookie-signature": {
"version": "1.0.1",
"from": "[email protected]"
},
"buffer-crc32": {
"version": "0.2.1",
"from": "[email protected]"
},
"cookie": {
"version": "0.1.0",
"from": "[email protected]"
},
"send": {
"version": "0.1.4",
"from": "[email protected]",
"dependencies": {
"mime": {
"version": "1.2.11",
"from": "mime@~1.2.9"
},
"range-parser": {
"version": "0.0.4",
"from": "[email protected]"
}
}
},
"bytes": {
"version": "0.2.0",
"from": "[email protected]"
},
"fresh": {
"version": "0.2.0",
"from": "[email protected]"
},
"pause": {
"version": "0.0.1",
"from": "[email protected]"
},
"uid2": {
"version": "0.0.2",
"from": "[email protected]"
},
"debug": {
"version": "0.7.2",
"from": "debug@*"
},
"methods": {
"version": "0.0.1",
"from": "[email protected]"
}
}
},
"uid2": {
"version": "0.0.3",
"from": "[email protected]"
}
}
},
"memwatch": {
"version": "0.2.2",
"from": "memwatch@~0.2"
},
"timekit": {
"version": "0.1.8",
"from": "[email protected]",
"dependencies": {
"bindings": {
"version": "1.1.1",
"from": "bindings@*"
}
}
},
"strong-cpu-profiler": {
"version": "0.1.0",
"from": "strong-cpu-profiler@stable"
},
"nodefly-gcinfo": {
"version": "0.0.15",
"from": "nodefly-gcinfo@latest"
},
"nodefly-uvmon": {
"version": "0.0.7",
"from": "nodefly-uvmon@stable"
}
}
}
}
}
@luk-
Copy link

luk- commented Oct 24, 2013

You can work around this by using npm shrinkwrap --dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment