Skip to content

Commit

Permalink
improve(electron): development experience
Browse files Browse the repository at this point in the history
  • Loading branch information
xyhp915 committed Jan 21, 2021
1 parent d06ec5c commit 16a5974
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion gulpfile.js
@@ -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')
Expand Down Expand Up @@ -62,7 +63,7 @@ const css = {

const common = {
clean () {
return del(outputPath)
return del(['./static/**/*', '!./static/yarn.lock', '!./static/node_modules'])
},

syncResourceFile () {
Expand All @@ -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)
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 16a5974

Please sign in to comment.