aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/scripts/postpublish.js
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-18 08:30:51 +0800
committerGitHub <noreply@github.com>2017-11-18 08:30:51 +0800
commit98394c6e37ee2538f18d7c427fd72cbf23f3207d (patch)
tree188aa6be60a37ad0d7e53edcfc7c9975f93fa845 /packages/0x.js/scripts/postpublish.js
parent5042b85d218bd17dcf0ebf9b3127dd30c5bb5962 (diff)
parent37a9b64503edc8fe750dad02a7a45d8303f9ba04 (diff)
downloaddexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar.gz
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar.bz2
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar.lz
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar.xz
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.tar.zst
dexon-sol-tools-98394c6e37ee2538f18d7c427fd72cbf23f3207d.zip
Merge pull request #228 from 0xProject/feature/publishLifecycleScripts
Add postpublish scripts for sub-packages
Diffstat (limited to 'packages/0x.js/scripts/postpublish.js')
-rw-r--r--packages/0x.js/scripts/postpublish.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/0x.js/scripts/postpublish.js b/packages/0x.js/scripts/postpublish.js
new file mode 100644
index 000000000..ffc68afb4
--- /dev/null
+++ b/packages/0x.js/scripts/postpublish.js
@@ -0,0 +1,43 @@
+const execAsync = require('async-child-process').execAsync;
+const postpublish_utils = require('../../../scripts/postpublish_utils');
+const packageJSON = require('../package.json');
+
+const cwd = __dirname + '/..';
+const subPackageName = packageJSON.name;
+const S3BucketPath = 's3://0xjs-docs-jsons/';
+
+let tag;
+let version;
+postpublish_utils.getLatestTagAndVersionAsync(subPackageName)
+ .then(function(result) {
+ tag = result.tag;
+ version = result.version;
+ const releaseName = postpublish_utils.getReleaseName(subPackageName, version);
+ const assets = [
+ __dirname + '/../_bundles/index.js',
+ __dirname + '/../_bundles/index.min.js',
+ ];
+ return postpublish_utils.publishReleaseNotes(tag, releaseName, assets);
+ })
+ .then(function(release) {
+ console.log('POSTPUBLISH: Release successful, generating docs...');
+ return execAsync(
+ 'JSON_FILE_PATH=' + __dirname + '/../docs/index.json PROJECT_DIR=' + __dirname + '/.. yarn docs:json',
+ {
+ cwd,
+ }
+ );
+ })
+ .then(function(result) {
+ if (result.stderr !== '') {
+ throw new Error(result.stderr);
+ }
+ const fileName = 'v' + version + '.json';
+ console.log('POSTPUBLISH: Doc generation successful, uploading docs... as ', fileName);
+ const s3Url = S3BucketPath + fileName;
+ return execAsync('S3_URL=' + s3Url + ' yarn upload_docs_json', {
+ cwd,
+ });
+ }).catch (function(err) {
+ throw err;
+ });