remove unused export

This commit is contained in:
Steve Klebanoff
2019-01-02 15:16:45 -08:00
parent 472f89bd3d
commit 9f47f90c6e

View File

@@ -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);