aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/publish_release_notes.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-08-23 01:52:17 +0800
committerFabio Berger <me@fabioberger.com>2018-08-23 01:52:17 +0800
commitb7c119b2aaaa2f3579ca4aeef198eca7f38f1216 (patch)
tree16956eb295a2b0a21fcab07b4e2377c2cd59d3c9 /packages/monorepo-scripts/src/publish_release_notes.ts
parent3c2af2067f768bd3ffe233d9a7c2d0232db6868e (diff)
downloaddexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar.gz
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar.bz2
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar.lz
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar.xz
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.tar.zst
dexon-0x-contracts-b7c119b2aaaa2f3579ca4aeef198eca7f38f1216.zip
Fix many linter errors that showed up upon upgrading tsutil
Diffstat (limited to 'packages/monorepo-scripts/src/publish_release_notes.ts')
-rw-r--r--packages/monorepo-scripts/src/publish_release_notes.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/monorepo-scripts/src/publish_release_notes.ts b/packages/monorepo-scripts/src/publish_release_notes.ts
index 964f5b0bb..5afcc8775 100644
--- a/packages/monorepo-scripts/src/publish_release_notes.ts
+++ b/packages/monorepo-scripts/src/publish_release_notes.ts
@@ -1,9 +1,7 @@
-import * as promisify from 'es6-promisify';
-import * as publishRelease from 'publish-release';
-
-import { utils } from './utils/utils';
import { publishReleaseNotesAsync } from './utils/github_release_utils';
+import { utils } from './utils/utils';
+// tslint:disable-next-line:no-floating-promises
(async () => {
const shouldIncludePrivate = false;
const allUpdatedPackages = await utils.getUpdatedPackagesAsync(shouldIncludePrivate);