Added prettify option
This commit is contained in:
parent
9cecefd315
commit
8103febbb6
@ -46,4 +46,9 @@ function getDependencyLicenseInfo(all_dependencies, recursive){
|
|||||||
const packageInfo = parsePackageInfo(`./package.json`);
|
const packageInfo = parsePackageInfo(`./package.json`);
|
||||||
const all = getDependencyLicenseInfo(mergeDependencies(packageInfo), args.includes("--recursive"));
|
const all = getDependencyLicenseInfo(mergeDependencies(packageInfo), args.includes("--recursive"));
|
||||||
|
|
||||||
|
if(args.includes("--pretty")){
|
||||||
|
fs.writeFileSync('./licenses.json', JSON.stringify(all, null, 4));
|
||||||
|
}
|
||||||
|
else{
|
||||||
fs.writeFileSync('./licenses.json', JSON.stringify(all));
|
fs.writeFileSync('./licenses.json', JSON.stringify(all));
|
||||||
|
}
|
Reference in New Issue
Block a user