mirror of
https://github.com/PanJiaChen/electron-vue-admin.git
synced 2025-04-05 19:41:41 +08:00
修改
This commit is contained in:
parent
ec3afcc232
commit
8923a66c8f
@ -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,14 +38,14 @@ 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)
|
||||||
|
|
||||||
const compiler = webpack(rendererConfig)
|
const compiler = webpack(rendererConfig)
|
||||||
hotMiddleware = webpackHotMiddleware(compiler, {
|
hotMiddleware = webpackHotMiddleware(compiler, {
|
||||||
log: false,
|
log: false,
|
||||||
heartbeat: 2500
|
heartbeat: 2500
|
||||||
})
|
})
|
||||||
|
|
||||||
compiler.plugin('compilation', compilation => {
|
compiler.plugin('compilation', compilation => {
|
||||||
@ -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()])
|
||||||
@ -175,4 +174,4 @@ function init () {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
init()
|
init()
|
0
dist/electron/.gitkeep
vendored
0
dist/electron/.gitkeep
vendored
0
dist/web/.gitkeep
vendored
0
dist/web/.gitkeep
vendored
@ -1,22 +1,26 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title>electron-vue-admin</title>
|
|
||||||
<% if (htmlWebpackPlugin.options.nodeModules) { %>
|
|
||||||
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
|
|
||||||
<script>
|
|
||||||
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>')
|
|
||||||
</script>
|
|
||||||
<% } %>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="app"></div>
|
|
||||||
<!-- Set `__static` path to static files in production -->
|
|
||||||
<script>
|
|
||||||
if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<!-- webpack builds are automatically injected -->
|
<head>
|
||||||
</body>
|
<meta charset="utf-8">
|
||||||
</html>
|
<title>electron-vue-admin</title>
|
||||||
|
<% if (htmlWebpackPlugin.options.nodeModules) { %>
|
||||||
|
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
|
||||||
|
<script>
|
||||||
|
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\
|
||||||
|
') %>')
|
||||||
|
</script>
|
||||||
|
<% } %>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<!-- Set `__static` path to static files in production -->
|
||||||
|
<script>
|
||||||
|
if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- webpack builds are automatically injected -->
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user