Skip to content

Instantly share code, notes, and snippets.

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

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

Then shrinkwrap for production, and note that the dev dependency is (correctly) excluded at the top, but present nested under the production dependency.

npm init
npm install strong-agent --save
npm install [email protected] --save-dev
npm shrinkwrap

Now a teammate joins and clones the repo. He/she installs all dependencies, but now the dev dependency is only at the top level — no longer nested under the production dependency.

This means that a subsequent re-shrinkwrap will now remove the needed dependency altogether.

rm -rf node_modules/
npm install
npm shrinkwrap
{
"name": "shrinkwrap-test-devdeps",
"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@",
"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]"
},
"request": {
"version": "2.27.0",
"from": "request@*",
"dependencies": {
"qs": {
"version": "0.6.5",
"from": "qs@~0.6.0"
},
"json-stringify-safe": {
"version": "5.0.0",
"from": "json-stringify-safe@~5.0.0"
},
"forever-agent": {
"version": "0.5.0",
"from": "forever-agent@~0.5.0"
},
"tunnel-agent": {
"version": "0.3.0",
"from": "tunnel-agent@~0.3.0"
},
"http-signature": {
"version": "0.10.0",
"from": "http-signature@~0.10.0",
"dependencies": {
"assert-plus": {
"version": "0.1.2",
"from": "[email protected]"
},
"asn1": {
"version": "0.1.11",
"from": "[email protected]"
},
"ctype": {
"version": "0.5.2",
"from": "[email protected]"
}
}
},
"hawk": {
"version": "1.0.0",
"from": "hawk@~1.0.0",
"dependencies": {
"hoek": {
"version": "0.9.1",
"from": "[email protected]"
},
"boom": {
"version": "0.4.2",
"from": "[email protected]"
},
"cryptiles": {
"version": "0.2.2",
"from": "[email protected]"
},
"sntp": {
"version": "0.2.4",
"from": "[email protected]"
}
}
},
"aws-sign": {
"version": "0.3.0",
"from": "aws-sign@~0.3.0"
},
"oauth-sign": {
"version": "0.3.0",
"from": "oauth-sign@~0.3.0"
},
"cookie-jar": {
"version": "0.3.0",
"from": "cookie-jar@~0.3.0"
},
"node-uuid": {
"version": "1.4.1",
"from": "node-uuid@~1.4.0"
},
"mime": {
"version": "1.2.11",
"from": "mime@~1.2.9"
},
"form-data": {
"version": "0.1.2",
"from": "form-data@~0.1.0",
"dependencies": {
"combined-stream": {
"version": "0.0.4",
"from": "combined-stream@~0.0.4",
"dependencies": {
"delayed-stream": {
"version": "0.0.5",
"from": "[email protected]"
}
}
},
"async": {
"version": "0.2.9",
"from": "async@~0.2.9"
}
}
}
}
},
"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"
}
}
}
}
}
{
"name": "shrinkwrap-test-devdeps",
"version": "0.0.0",
"dependencies": {
"strong-agent": {
"version": "0.2.15",
"from": "strong-agent@",
"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"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment