mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
829 B
18 lines
829 B
'use strict'
|
|
var path = require('path')
|
|
var writeFileAtomic = require('write-file-atomic')
|
|
var deepSortObject = require('../utils/deep-sort-object.js')
|
|
|
|
module.exports = function (pkg, buildpath, next) {
|
|
// FIXME: This bundled dance is because we're sticking a big tree of bundled
|
|
// deps into the parsed package.json– it probably doesn't belong there =/
|
|
// But the real reason we don't just dump it out is that it's the result
|
|
// of npm-read-tree, which produces circular data structures, due to the
|
|
// parent and children keys.
|
|
var bundled = pkg.package._bundled
|
|
delete pkg.package._bundled // FIXME
|
|
var packagejson = deepSortObject(pkg.package)
|
|
var data = JSON.stringify(packagejson, null, 2) + '\n'
|
|
pkg.package._bundled = bundled
|
|
writeFileAtomic(path.resolve(buildpath, 'package.json'), data, next)
|
|
}
|
|
|