aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/postpublish_utils.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/postpublish_utils.js b/scripts/postpublish_utils.js
index 4f9798e60..e2c23ee14 100644
--- a/scripts/postpublish_utils.js
+++ b/scripts/postpublish_utils.js
@@ -5,6 +5,7 @@ const publishRelease = require('publish-release');
const publishReleaseAsync = promisify(publishRelease);
const githubPersonalAccessToken = process.env.GITHUB_PERSONAL_ACCESS_TOKEN_0X_JS;
+const generatedDocsDirectoryName = 'generated_docs';
module.exports = {
getLatestTagAndVersionAsync: function(subPackageName) {
@@ -48,4 +49,5 @@ module.exports = {
const releaseName = subPackageName + ' v' + version;
return releaseName;
},
+ generatedDocsDirectoryName,
};