aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/0x.js/scripts/postpublish.js2
-rw-r--r--scripts/postpublish_utils.js1
2 files changed, 2 insertions, 1 deletions
diff --git a/packages/0x.js/scripts/postpublish.js b/packages/0x.js/scripts/postpublish.js
index d2ae86bbd..ffc68afb4 100644
--- a/packages/0x.js/scripts/postpublish.js
+++ b/packages/0x.js/scripts/postpublish.js
@@ -4,7 +4,7 @@ const packageJSON = require('../package.json');
const cwd = __dirname + '/..';
const subPackageName = packageJSON.name;
-const S3BucketPath = 's3://0xjs-docs-jsons/',
+const S3BucketPath = 's3://0xjs-docs-jsons/';
let tag;
let version;
diff --git a/scripts/postpublish_utils.js b/scripts/postpublish_utils.js
index 4c9882fa8..3fb079bad 100644
--- a/scripts/postpublish_utils.js
+++ b/scripts/postpublish_utils.js
@@ -46,5 +46,6 @@ module.exports = {
},
getReleaseName(subPackageName, version) {
const releaseName = subPackageName + ' v' + version;
+ return releaseName;
},
};