deploy.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. const git = require('simple-git');
  7. const path = require('path');
  8. const fs = require("fs");
  9. const fse = require("fs-extra");
  10. const remoteUrl = "https://github.com/molstar/molstar.github.io.git";
  11. const buildDir = path.resolve(__dirname, '../build/');
  12. const deployDir = path.resolve(buildDir, 'deploy/');
  13. const localPath = path.resolve(deployDir, 'molstar.github.io/');
  14. function log(command, stdout, stderr) {
  15. if (command) {
  16. console.log('\n###', command);
  17. stdout.pipe(process.stdout);
  18. stderr.pipe(process.stderr);
  19. }
  20. }
  21. function copyViewer() {
  22. console.log('\n###', 'copy viewer files');
  23. const viewerBuildPath = path.resolve(buildDir, '../build/viewer/');
  24. const viewerDeployPath = path.resolve(localPath, 'viewer/');
  25. fse.copySync(viewerBuildPath, viewerDeployPath, { overwrite: true });
  26. }
  27. if (!fs.existsSync(localPath)) {
  28. console.log('\n###', 'create localPath');
  29. fs.mkdirSync(localPath, { recursive: true });
  30. }
  31. process.chdir(localPath);
  32. if (!fs.existsSync(path.resolve(localPath, '.git/'))) {
  33. console.log('\n###', 'clone repository');
  34. git()
  35. .outputHandler(log)
  36. .clone(remoteUrl, localPath)
  37. .fetch(['--all'])
  38. .exec(copyViewer)
  39. .add(['-A'])
  40. .commit('updated viewer')
  41. .push();
  42. } else {
  43. console.log('\n###', 'update repository');
  44. git()
  45. .outputHandler(log)
  46. .fetch(['--all'])
  47. .reset(['--hard', 'origin/master'])
  48. .exec(copyViewer)
  49. .add(['-A'])
  50. .commit('updated viewer')
  51. .push();
  52. }