From 76c5945017c945122c3e72bc7dcdf5dd048b4a22 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 2 Apr 2018 16:40:02 +0900 Subject: Default to 4sp --- packages/monorepo-scripts/src/convert_changelogs.ts | 2 +- packages/monorepo-scripts/src/publish.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/monorepo-scripts') diff --git a/packages/monorepo-scripts/src/convert_changelogs.ts b/packages/monorepo-scripts/src/convert_changelogs.ts index 71383ee7c..c75abfc44 100644 --- a/packages/monorepo-scripts/src/convert_changelogs.ts +++ b/packages/monorepo-scripts/src/convert_changelogs.ts @@ -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); diff --git a/packages/monorepo-scripts/src/publish.ts b/packages/monorepo-scripts/src/publish.ts index 30e5bd0e1..240158c77 100644 --- a/packages/monorepo-scripts/src/publish.ts +++ b/packages/monorepo-scripts/src/publish.ts @@ -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; } -- cgit v1.2.3