aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-18 01:23:27 +0800
committerFabio Berger <me@fabioberger.com>2017-11-18 01:23:27 +0800
commit7b61ad639b7410c9157e340a422b431b25dc620d (patch)
tree244a3a4282b9e175273d807691cd8d0ef08fd4d4 /packages
parent1e5cc3b0e53aeb606140d0f735652aa464c2a4e7 (diff)
downloaddexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar.gz
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar.bz2
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar.lz
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar.xz
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.tar.zst
dexon-sol-tools-7b61ad639b7410c9157e340a422b431b25dc620d.zip
small fixes
Diffstat (limited to 'packages')
-rw-r--r--packages/0x.js/scripts/postpublish.js19
1 files changed, 3 insertions, 16 deletions
diff --git a/packages/0x.js/scripts/postpublish.js b/packages/0x.js/scripts/postpublish.js
index d68fd8fa0..e8ca99db9 100644
--- a/packages/0x.js/scripts/postpublish.js
+++ b/packages/0x.js/scripts/postpublish.js
@@ -7,6 +7,7 @@ const typedoc = require('typedoc');
const publishReleaseAsync = promisify(publishRelease);
const subPackageName = '0x.js';
const githubPersonalAccessToken = process.env.GITHUB_PERSONAL_ACCESS_TOKEN_0X_JS;
+
let tag;
let version;
getLatestTagAndVersionAsync(subPackageName)
@@ -32,20 +33,6 @@ getLatestTagAndVersionAsync(subPackageName)
.then(function(release) {
console.log('POSTPUBLISH: Release successful, generating docs...');
- // const rootDir = __dirname + '/../src/index.ts';
- // const typedocApp = new typedoc.Application({
- // excludePrivate: true,
- // excludeExternals: true,
- // target: 'ES5',
- // });
-
- // console.log(typedocApp.options);
- // typedocApp.options.setValue('excludePrivate', true);
- // typedocApp.options.setValue('excludeExternals', true);
- // typedocApp.options.setValue('json', true);
- // typedocApp.options.setValue('target', 'ES5');
-
-
// return typedocApp.generateDocs([rootDir], __dirname + '/../docs/index.json');
return execAsync('yarn typedoc --excludePrivate --excludeExternals --target ES5 --json ' + __dirname + '/../docs/index.json ' + __dirname + '/..');
})
@@ -56,8 +43,8 @@ getLatestTagAndVersionAsync(subPackageName)
console.log('POSTPUBLISH: Doc generation successful, uploading docs...');
const s3Url = 's3://0xjs-docs-jsons/v' + version +'.json';
return execAsync('aws s3 cp ' + __dirname + '/../docs/index.json ' + s3Url + ' --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type aplication/json');
- }).catch (function(error) {
- throw error;
+ }).catch (function(err) {
+ throw err;
});
function getLatestTagAndVersionAsync(subPackageName) {