diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2019-01-03 07:16:45 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2019-01-03 07:16:45 +0800 |
commit | 9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7 (patch) | |
tree | 75c0885c9b907ceb5aabc2e45b4c0dd229684715 /packages/monorepo-scripts | |
parent | 472f89bd3d459c8b5c29de8a808381bf19c8c72b (diff) | |
download | dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar.gz dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar.bz2 dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar.lz dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar.xz dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.tar.zst dexon-sol-tools-9f47f90c6e80ba9a61bcb6065fed1e2c6be8c5b7.zip |
remove unused export
Diffstat (limited to 'packages/monorepo-scripts')
-rw-r--r-- | packages/monorepo-scripts/src/utils/github_release_utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/utils/github_release_utils.ts b/packages/monorepo-scripts/src/utils/github_release_utils.ts index 1044c25e9..48704f3aa 100644 --- a/packages/monorepo-scripts/src/utils/github_release_utils.ts +++ b/packages/monorepo-scripts/src/utils/github_release_utils.ts @@ -93,7 +93,7 @@ function adjustAssetPaths(assets: string[]): string[] { return finalAssets; } -export function getReleaseNotesForPackage(packageLocation: string, packageName: string): string { +function getReleaseNotesForPackage(packageLocation: string, packageName: string): string { const changelogJSONPath = path.join(packageLocation, 'CHANGELOG.json'); const changelogJSON = readFileSync(changelogJSONPath, 'utf-8'); const changelogs = JSON.parse(changelogJSON); |