Skip to content

Commit 1b71c55

Browse files
committedJun 26, 2015
install: save: Don't sort the top level package.json keys
1 parent bc46ca9 commit 1b71c55

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎lib/install/save.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ function savePackageJson (args, tree, next) {
100100
}
101101
})
102102

103-
packagejson = deepSortObject(packagejson)
103+
Object.keys(packagejson).forEach(function (key) {
104+
packagejson[key] = deepSortObject(packagejson[key])
105+
})
104106

105107
var json = JSON.stringify(packagejson, null, 2) + '\n'
106108
writeFileAtomic(saveTarget, json, next)

0 commit comments

Comments
 (0)
Please sign in to comment.