improve(electron): development experience

pull/1179/head
charlie 2021-01-21 12:11:02 +08:00
parent d06ec5cc6e
commit 16a5974656
2 changed files with 17 additions and 2 deletions

View File

@ -1,4 +1,5 @@
const fs = require('fs')
const cp = require('child_process')
const path = require('path')
const gulp = require('gulp')
const postcss = require('gulp-postcss')
@ -62,7 +63,7 @@ const css = {
const common = {
clean () {
return del(outputPath)
return del(['./static/**/*', '!./static/yarn.lock', '!./static/node_modules'])
},
syncResourceFile () {
@ -74,6 +75,20 @@ const common = {
}
}
exports.electron = () => {
if (!fs.existsSync(path.join(outputPath, 'node_modules'))) {
cp.execSync('yarn', {
cwd: outputPath,
stdio: 'inherit'
})
}
cp.execSync('yarn electron:dev', {
cwd: outputPath,
stdio: 'inherit'
})
}
exports.clean = common.clean
exports.watch = gulp.parallel(common.keepSyncResourceFile, css.watchCSS)
exports.build = gulp.series(common.clean, common.syncResourceFile, css.buildCSS)

View File

@ -32,7 +32,7 @@
"release-app": "run-s gulp:build cljs:release-app",
"release-publishing": "run-s gulp:build cljs:release-publishing",
"dev-release-app": "run-s gulp:build cljs:dev-release-app",
"dev-electron-app": "cd static/ && yarn && yarn electron:dev",
"dev-electron-app": "gulp electron",
"debug-electron-app": "cd static/ && yarn electron:debug",
"clean": "gulp clean",
"test": "run-s cljs:test cljs:run-test",