diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-05-15 06:44:09 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-05-15 06:44:09 +0800 |
commit | c520b7f1fb599b98878e4755d509b566ab959b05 (patch) | |
tree | 73d680a27198462c8b8f665d85f85739162708a2 /packages/monorepo-scripts/src/utils.ts | |
parent | 5422bf57332f69d7b45e884c19a9f20d60bdec5b (diff) | |
download | dexon-0x-contracts-c520b7f1fb599b98878e4755d509b566ab959b05.tar.gz dexon-0x-contracts-c520b7f1fb599b98878e4755d509b566ab959b05.tar.zst dexon-0x-contracts-c520b7f1fb599b98878e4755d509b566ab959b05.zip |
Apply prettier to some files which were not formatted correctly
Diffstat (limited to 'packages/monorepo-scripts/src/utils.ts')
-rw-r--r-- | packages/monorepo-scripts/src/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/utils.ts b/packages/monorepo-scripts/src/utils.ts index 480788ad8..c2d92c86a 100644 --- a/packages/monorepo-scripts/src/utils.ts +++ b/packages/monorepo-scripts/src/utils.ts @@ -43,7 +43,7 @@ export const utils = { } return updatedPackages; }, - getChangelogJSONIfExists(changelogPath: string): string|undefined { + getChangelogJSONIfExists(changelogPath: string): string | undefined { try { const changelogJSON = fs.readFileSync(changelogPath, 'utf-8'); return changelogJSON; |