buildFast.js node.js 快速发布到gitee上,这样就不用每次点击,并且自动弹出发布页面,再点击发布,完美!

buildFast.js node.js 快速发布到gitee上,这样就不用每次点击,并且自动弹出发布页面,再点击发布,完美!

const fs = require('fs-extra');
fs.copyFileSync('public/data/naviData.js', 'build/data/naviData.js');

let exec = require('child_process').exec;
exec('git add .',() => {
  exec('git push', () => {
    exec('git commit -m buildFast', () => {
      exec('git push -u origin master', () => {
        console.info('git is over')
        exec('start https://gitee.com/pengchenggang/navigator/pages')
      })
    })
  })
})

---------------------------------------------
生活的意义并不是与他人争高下,而在于享受努力实现目标的过程,结果是对自己行动的嘉奖。
↑面的话,越看越不痛快,应该这么说:

生活的意义就是你自己知道你要做什么,明确目标。没有目标,后面都是瞎扯!
原文地址:https://www.cnblogs.com/pengchenggang/p/14313591.html