blob: 262fa925ae7bffc02ea8eff828a7d8aa2f6e3c92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
'use strict';
const path = require('path');
const writeJsonFile = require('write-json-file');
const sortKeys = require('sort-keys');
const opts = {indent: 2};
const dependencyKeys = new Set([
'dependencies',
'devDependencies',
'optionalDependencies',
'peerDependencies'
]);
function normalize(pkg) {
const ret = {};
for (const key of Object.keys(pkg)) {
ret[key] = dependencyKeys.has(key) ? sortKeys(pkg[key]) : pkg[key];
}
return ret;
}
module.exports = (fp, data) => {
if (typeof fp !== 'string') {
data = fp;
fp = '.';
}
fp = path.basename(fp) === 'package.json' ? fp : path.join(fp, 'package.json');
data = normalize(data);
return writeJsonFile(fp, data, opts);
};
module.exports.sync = (fp, data) => {
if (typeof fp !== 'string') {
data = fp;
fp = '.';
}
fp = path.basename(fp) === 'package.json' ? fp : path.join(fp, 'package.json');
data = normalize(data);
writeJsonFile.sync(fp, data, opts);
};
|