aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/monorepo-scripts/src/utils.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/monorepo-scripts/src/utils.ts b/packages/monorepo-scripts/src/utils.ts
index 3a16bf91d..b1bb78ab2 100644
--- a/packages/monorepo-scripts/src/utils.ts
+++ b/packages/monorepo-scripts/src/utils.ts
@@ -44,9 +44,8 @@ export const utils = {
return updatedPackages;
},
getChangelogJSONIfExists(changelogPath: string) {
- let changelogJSON: string;
try {
- changelogJSON = fs.readFileSync(changelogPath, 'utf-8');
+ const changelogJSON = fs.readFileSync(changelogPath, 'utf-8');
return changelogJSON;
} catch (err) {
return undefined;