1
0
mirror of https://github.com/PanJiaChen/electron-vue-admin.git synced 2025-04-06 03:57:57 +08:00
This commit is contained in:
huangqingpeng@curefun.com 2019-07-29 16:04:10 +08:00
parent ec3afcc232
commit 8923a66c8f
4 changed files with 36 additions and 33 deletions

View File

@ -16,7 +16,7 @@ let electronProcess = null
let manualRestart = false let manualRestart = false
let hotMiddleware let hotMiddleware
function logStats (proc, data) { function logStats(proc, data) {
let log = '' let log = ''
log += chalk.yellow.bold(`${proc} Process ${new Array((19 - proc.length) + 1).join('-')}`) log += chalk.yellow.bold(`${proc} Process ${new Array((19 - proc.length) + 1).join('-')}`)
@ -38,7 +38,7 @@ function logStats (proc, data) {
console.log(log) console.log(log)
} }
function startRenderer () { function startRenderer() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
rendererConfig.entry.renderer = [path.join(__dirname, 'dev-client')].concat(rendererConfig.entry.renderer) rendererConfig.entry.renderer = [path.join(__dirname, 'dev-client')].concat(rendererConfig.entry.renderer)
@ -60,11 +60,10 @@ function startRenderer () {
}) })
const server = new WebpackDevServer( const server = new WebpackDevServer(
compiler, compiler, {
{
contentBase: path.join(__dirname, '../'), contentBase: path.join(__dirname, '../'),
quiet: true, quiet: true,
before (app, ctx) { before(app, ctx) {
app.use(hotMiddleware) app.use(hotMiddleware)
ctx.middleware.waitUntilValid(() => { ctx.middleware.waitUntilValid(() => {
resolve() resolve()
@ -77,7 +76,7 @@ function startRenderer () {
}) })
} }
function startMain () { function startMain() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
mainConfig.entry.main = [path.join(__dirname, '../src/main/index.dev.js')].concat(mainConfig.entry.main) mainConfig.entry.main = [path.join(__dirname, '../src/main/index.dev.js')].concat(mainConfig.entry.main)
@ -113,7 +112,7 @@ function startMain () {
}) })
} }
function startElectron () { function startElectron() {
electronProcess = spawn(electron, ['--inspect=5858', path.join(__dirname, '../dist/electron/main.js')]) electronProcess = spawn(electron, ['--inspect=5858', path.join(__dirname, '../dist/electron/main.js')])
electronProcess.stdout.on('data', data => { electronProcess.stdout.on('data', data => {
@ -128,7 +127,7 @@ function startElectron () {
}) })
} }
function electronLog (data, color) { function electronLog(data, color) {
let log = '' let log = ''
data = data.toString().split(/\r?\n/) data = data.toString().split(/\r?\n/)
data.forEach(line => { data.forEach(line => {
@ -145,7 +144,7 @@ function electronLog (data, color) {
} }
} }
function greeting () { function greeting() {
const cols = process.stdout.columns const cols = process.stdout.columns
let text = '' let text = ''
@ -163,7 +162,7 @@ function greeting () {
console.log(chalk.blue(' getting ready...') + '\n') console.log(chalk.blue(' getting ready...') + '\n')
} }
function init () { function init() {
greeting() greeting()
Promise.all([startRenderer(), startMain()]) Promise.all([startRenderer(), startMain()])

View File

0
dist/web/.gitkeep vendored
View File

View File

@ -1,16 +1,19 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head>
<head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>electron-vue-admin</title> <title>electron-vue-admin</title>
<% if (htmlWebpackPlugin.options.nodeModules) { %> <% if (htmlWebpackPlugin.options.nodeModules) { %>
<!-- Add `node_modules/` to global paths so `require` works properly in development --> <!-- Add `node_modules/` to global paths so `require` works properly in development -->
<script> <script>
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>') require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\
') %>')
</script> </script>
<% } %> <% } %>
</head> </head>
<body>
<body>
<div id="app"></div> <div id="app"></div>
<!-- Set `__static` path to static files in production --> <!-- Set `__static` path to static files in production -->
<script> <script>
@ -18,5 +21,6 @@
</script> </script>
<!-- webpack builds are automatically injected --> <!-- webpack builds are automatically injected -->
</body> </body>
</html> </html>