diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-08 21:47:06 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-08 21:47:06 +0800 |
commit | 9f42ceb5a3962c3e9e251da8791182e561139b08 (patch) | |
tree | 4d0dfdac7ba19cddc1d035d383bd28c3ded064b7 /packages/monorepo-scripts/src/publish_release_notes.ts | |
parent | 386b5bb122c189496e83da46cf53e8dfe83f0ee6 (diff) | |
download | dexon-0x-contracts-9f42ceb5a3962c3e9e251da8791182e561139b08.tar.gz dexon-0x-contracts-9f42ceb5a3962c3e9e251da8791182e561139b08.tar.zst dexon-0x-contracts-9f42ceb5a3962c3e9e251da8791182e561139b08.zip |
Split publish_utils since it was becoming too big and unwieldy
Diffstat (limited to 'packages/monorepo-scripts/src/publish_release_notes.ts')
-rw-r--r-- | packages/monorepo-scripts/src/publish_release_notes.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/publish_release_notes.ts b/packages/monorepo-scripts/src/publish_release_notes.ts index d708e8275..964f5b0bb 100644 --- a/packages/monorepo-scripts/src/publish_release_notes.ts +++ b/packages/monorepo-scripts/src/publish_release_notes.ts @@ -2,7 +2,7 @@ import * as promisify from 'es6-promisify'; import * as publishRelease from 'publish-release'; import { utils } from './utils/utils'; -import { publishReleaseNotesAsync } from './utils/publish_utils'; +import { publishReleaseNotesAsync } from './utils/github_release_utils'; (async () => { const shouldIncludePrivate = false; |