1 Star 0 Fork 0

toolmarket/drawio-desktop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sync.js 878 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs')
const path = require('path')
const child_process = require('child_process')
const electronAppDir = path.join(__dirname, 'drawio', 'src/main/webapp')
const appjsonpath = path.join(__dirname, 'drawio', 'src/main/webapp', 'package.json')
const disableUpdatePath = path.join(__dirname, 'drawio', 'src/main/webapp', 'disableUpdate.js')
let ver = fs.readFileSync(path.join(__dirname, 'drawio', 'VERSION'), 'utf8')
//let ver = '14.1.5' // just to test autoupdate
let pj = require(appjsonpath)
pj.version = ver
fs.writeFileSync(appjsonpath, JSON.stringify(pj, null, 2), 'utf8')
//Enable/disable updates
fs.writeFileSync(disableUpdatePath, 'module.exports = { disableUpdate: function() { return ' + (process.argv[2] == 'disableUpdate'? 'true' : 'false') + ';}}', 'utf8');
child_process.spawnSync('yarn', ['install', '--production'], {cwd: electronAppDir})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/toolmarket/drawio-desktop.git
git@gitee.com:toolmarket/drawio-desktop.git
toolmarket
drawio-desktop
drawio-desktop
dev

搜索帮助

0d507c66 1850385 C8b1a773 1850385