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 --- packages/subproviders/scripts/postpublish.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/subproviders/scripts/postpublish.js (limited to 'packages/subproviders/scripts/postpublish.js') diff --git a/packages/subproviders/scripts/postpublish.js b/packages/subproviders/scripts/postpublish.js new file mode 100644 index 000000000..7fa452b08 --- /dev/null +++ b/packages/subproviders/scripts/postpublish.js @@ -0,0 +1,14 @@ +const postpublish_utils = require('../../../scripts/postpublish_utils'); +const packageJSON = require('../package.json'); + +const subPackageName = packageJSON.name; + +postpublish_utils.getLatestTagAndVersionAsync(subPackageName) + .then(function(result) { + const releaseName = postpublish_utils.getReleaseName(subPackageName, result.version); + const assets = []; + return postpublish_utils.publishReleaseNotes(result.tag, releaseName, assets); + }) + .catch (function(err) { + throw err; + }); -- cgit v1.2.3