summaryrefslogtreecommitdiff
path: root/javascript/videojs/build/netlify.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/videojs/build/netlify.js')
-rw-r--r--javascript/videojs/build/netlify.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/javascript/videojs/build/netlify.js b/javascript/videojs/build/netlify.js
new file mode 100644
index 0000000..2e3896c
--- /dev/null
+++ b/javascript/videojs/build/netlify.js
@@ -0,0 +1,38 @@
+const pkg = require('../package.json');
+const path = require('path');
+const sh = require('shelljs');
+
+process.env.CI = true;
+// run build steps
+sh.exec('npm run build');
+sh.exec('npm run sandbox');
+sh.exec('npm run docs:api');
+
+// copy the legacy docs over
+sh.cp('-R', 'docs/legacy-docs', 'docs/api/docs');
+
+const deployDir = 'deploy';
+const files = [
+ 'node_modules/es5-shim/es5-shim.js',
+ 'node_modules/es6-shim/es6-shim.js'
+];
+
+// cleanup previous deploy
+sh.rm('-rf', deployDir);
+// make sure the directory exists
+sh.mkdir('-p', deployDir);
+
+// create sub-directory for images
+sh.mkdir('-p', `${deployDir}/src`);
+
+// create nested directories
+files
+ .map((file) => path.dirname(file))
+ .forEach((dir) => sh.mkdir('-p', path.join(deployDir, dir)));
+
+// copy files/folders to deploy dir
+files
+ .concat('dist', 'index.html', 'sandbox', 'docs', 'src/images')
+ .forEach((file) => sh.cp('-r', file, path.join(deployDir, file)));
+
+sh.rm(path.join(deployDir, 'dist', `video-js-${pkg.version}.zip`));