Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Clean npm shrinkwrap #6672

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions clean-shrinkwrap.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env node

var _ = require('lodash');
var sorted = require('sorted-object');
var fs = require('fs');


function cleanModule(mod, name) {
delete mod.from;
delete mod.resolved;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will break dependencies pulled from GitHub like

"grunt-jasmine-node": "git://github.com/vojtajina/grunt-jasmine-node.git#fix-grunt-exit-code",
.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs to be more fine-grained. For GitHub refs to not be broken you should first check if the specific entry is specified as a version or a GitHub reference and not delete if it's the latter.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_.forEach(mod.dependencies, function(mod, name) {
cleanModule(mod, name);
});
}


console.log('Reading npm-shrinkwrap.json');
var shrinkwrap = require('./npm-shrinkwrap.json');

console.log('Cleaning shrinkwrap object');
cleanModule(shrinkwrap, shrinkwrap.name);

console.log('Writing cleaned npm-shrinkwrap.json');
fs.writeFileSync('npm-shrinkwrap.json', JSON.stringify(sorted(shrinkwrap), null, 2));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh.. one more thing. we should move the file under /scripts/

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
"dgeni-packages": "^0.7.0",
"gulp-jshint": "~1.4.2",
"jshint-stylish": "~0.1.5",
"node-html-encoder": "0.0.2"
"node-html-encoder": "0.0.2",
"sorted-object": "^1.0.0"
},
"licenses": [
{
Expand Down