1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-30 09:06:49 +02:00
video.js/build/netlify-docs.js

26 lines
781 B
JavaScript

const sh = require('shelljs');
const semver = require('semver');
const generateExample = require('./generate-example.js').default;
const GIT_LOG = `git log --format=%B -n 1 ${process.env.COMMIT_REF}`;
const output = sh.exec(GIT_LOG, {async: false, silent:true}).stdout;
// if we're on master branch and not on a tagged commit,
// error the build so it doesn't redeploy the docs
if (process.env.BRANCH === 'master' && semver.valid(output.trim()) === null) {
process.exit(1);
// if we're on any other branch, we can regenerate docs
} else {
// generate the docs
sh.exec('npm run docs:api');
// copy the legacy docs over
sh.cp('-R', 'docs/legacy-docs', 'docs/api/docs');
if (process.env.BRANCH !== 'master') {
// generate the example
generateExample();
}
}