Default to 4sp

This commit is contained in:
Fabio Berger
2018-04-02 16:40:02 +09:00
parent 01c6fd92e8
commit 76c5945017
2 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ const HEADER_PRAGMA = '##';
changelog.changes.push(changes);
}
}
const changelogJSONPath = JSON.stringify(changelogs);
const changelogJSONPath = JSON.stringify(changelogs, null, 4);
const changelogJSONPathPath = `${lernaPackage.location}/CHANGELOG.json`;
fs.writeFileSync(changelogJSONPathPath, changelogJSONPath);
await utils.prettifyAsync(changelogJSONPath, constants.monorepoRootPath);

View File

@@ -77,7 +77,7 @@ const semverNameToIndex: { [semver: string]: number } = {
}
// Save updated CHANGELOG.json
fs.writeFileSync(changelogJSONPath, JSON.stringify(changelogs));
fs.writeFileSync(changelogJSONPath, JSON.stringify(changelogs, null, 4));
await utils.prettifyAsync(changelogJSONPath, constants.monorepoRootPath);
utils.log(`${packageName}: Updated CHANGELOG.json`);
// Generate updated CHANGELOG.md
@@ -162,7 +162,7 @@ function getChangelogJSONOrCreateIfMissing(packageName: string, changelogPath: s
return changelogJSON;
} catch (err) {
// If none exists, create new, empty one.
const emptyChangelogJSON = JSON.stringify([]);
const emptyChangelogJSON = JSON.stringify([], null, 4);
fs.writeFileSync(changelogPath, emptyChangelogJSON);
return emptyChangelogJSON;
}