Added: debug options for vscode debug

This commit is contained in:
Molunerfinn
2018-01-12 17:24:07 +08:00
parent 16f518b2ad
commit 29fb9c742e
4 changed files with 37 additions and 1 deletions

View File

@@ -24,4 +24,15 @@ require('electron').app.on('ready', () => {
})
// Require `main` process to boot app
if (process.env.DEBUG_ENV === 'debug') {
require('babel-core/register')({
'presets': [
['env', {
'targets': {
'node': true
}
}]
]
})
}
require('./index')

View File

@@ -13,6 +13,9 @@ import pkg from '../../package.json'
if (process.env.NODE_ENV !== 'development') {
global.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\')
}
if (process.env.DEBUG_ENV === 'debug') {
global.__static = require('path').join(__dirname, '../../static').replace(/\\/g, '\\\\')
}
let window
let settingWindow
@@ -50,6 +53,7 @@ function createTray () {
{
label: '打开详细窗口',
click () {
console.log(1)
if (settingWindow === null) {
createSettingWindow()
settingWindow.show()