aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/scripts/postpublish.js
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-03 20:46:42 +0800
committerFabio Berger <me@fabioberger.com>2018-03-03 20:46:42 +0800
commit160f74d53e8878a62619c3641b46da7f0c6d2b59 (patch)
tree3adbadf1ff01255f7ee1500d3f2bd93e8fa3dfea /packages/connect/scripts/postpublish.js
parent244c148a80d555bfb67cb83bb2d82a44b5aca68c (diff)
downloaddexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar.gz
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar.bz2
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar.lz
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar.xz
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.tar.zst
dexon-0x-contracts-160f74d53e8878a62619c3641b46da7f0c6d2b59.zip
Update to custom typeDoc fork with latest version (TS 2.7.0 support) + a bug fix allowing us to defer to the `include` in tsconfig.json on which files to run through TypeDoc
Diffstat (limited to 'packages/connect/scripts/postpublish.js')
-rw-r--r--packages/connect/scripts/postpublish.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/connect/scripts/postpublish.js b/packages/connect/scripts/postpublish.js
index 869bad099..01c349cb8 100644
--- a/packages/connect/scripts/postpublish.js
+++ b/packages/connect/scripts/postpublish.js
@@ -19,7 +19,7 @@ postpublish_utils
.then(function(release) {
console.log('POSTPUBLISH: Release successful, generating docs...');
const jsonFilePath = __dirname + '/../' + postpublish_utils.generatedDocsDirectoryName + '/index.json';
- return execAsync('JSON_FILE_PATH=' + jsonFilePath + ' PROJECT_DIR=' + __dirname + '/.. yarn docs:json', {
+ return execAsync('JSON_FILE_PATH=' + jsonFilePath + ' yarn docs:json', {
cwd,
});
})