From 9c6453e12969bb3564e3146e66806476d7cd7b21 Mon Sep 17 00:00:00 2001 From: Brandon Millman Date: Fri, 8 Dec 2017 14:56:56 -0800 Subject: Fix broken postpublish_utils, add CHANGELOG and postpublish.js scripts to all packages --- scripts/postpublish_utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/postpublish_utils.js') 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, -- cgit v1.2.3