Add md directory to website package and change generated docs directory

This commit is contained in:
Brandon Millman
2017-11-27 12:10:26 -08:00
parent 48b3d85265
commit b04d07815f
14 changed files with 90 additions and 5 deletions

View File

@@ -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,
};