diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2017-12-09 06:56:56 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2017-12-09 07:01:52 +0800 |
commit | 9c6453e12969bb3564e3146e66806476d7cd7b21 (patch) | |
tree | 868178797e4250299b5da300fb0f5812f21dd2f8 /scripts | |
parent | a6f97181310c9acba176b2a28ffba1ca7d53727d (diff) | |
download | dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar.gz dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar.bz2 dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar.lz dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar.xz dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.tar.zst dexon-sol-tools-9c6453e12969bb3564e3146e66806476d7cd7b21.zip |
Fix broken postpublish_utils, add CHANGELOG and postpublish.js scripts to all packages
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/postpublish_utils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/postpublish_utils.js b/scripts/postpublish_utils.js index e9563a51c..c4ca917da 100644 --- a/scripts/postpublish_utils.js +++ b/scripts/postpublish_utils.js @@ -1,7 +1,7 @@ const execAsync = require('async-child-process').execAsync; const semverSort = require('semver-sort'); -import {promisify} from '@0xproject/utils'; const publishRelease = require('publish-release'); +const promisify = require('@0xproject/utils').promisify; const publishReleaseAsync = promisify(publishRelease); const githubPersonalAccessToken = process.env.GITHUB_PERSONAL_ACCESS_TOKEN_0X_JS; @@ -37,7 +37,7 @@ module.exports = { repo: '0x.js', tag: tag, name: releaseName, - notes: 'TODO', + notes: 'N/A', draft: false, prerelease: false, reuseRelease: true, |