From 880cbd88c2416c9a3281542c68affb862bd90575 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Mon, 18 Jun 2018 23:15:52 +0200 Subject: Small fixes --- packages/monorepo-scripts/src/utils/changelog_utils.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'packages/monorepo-scripts/src/utils/changelog_utils.ts') diff --git a/packages/monorepo-scripts/src/utils/changelog_utils.ts b/packages/monorepo-scripts/src/utils/changelog_utils.ts index a589fe985..dbafb6f16 100644 --- a/packages/monorepo-scripts/src/utils/changelog_utils.ts +++ b/packages/monorepo-scripts/src/utils/changelog_utils.ts @@ -4,7 +4,6 @@ import * as moment from 'moment'; import * as path from 'path'; import { exec as execAsync } from 'promisify-child-process'; import semver = require('semver'); -import semverSort = require('semver-sort'); import { constants } from '../constants'; import { Change, Changelog, VersionChangelog } from '../types'; @@ -94,9 +93,9 @@ export const changelogUtils = { fs.writeFileSync(changelogJSONPath, JSON.stringify(changelog, null, '\t')); await this.prettifyAsync(changelogJSONPath, constants.monorepoRootPath); }, - async writeChangelogMdFileAsync(packageLocation: string, changelog: Changelog): Promise { + async writeChangelogMdFileAsync(packageLocation: string, changelogMdString: string): Promise { const changelogMarkdownPath = path.join(packageLocation, 'CHANGELOG.md'); - fs.writeFileSync(changelogMarkdownPath, JSON.stringify(changelog, null, '\t')); + fs.writeFileSync(changelogMarkdownPath, changelogMdString); await this.prettifyAsync(changelogMarkdownPath, constants.monorepoRootPath); }, async prettifyAsync(filePath: string, cwd: string): Promise { -- cgit v1.2.3