Browse Source

Merge branch 'builder' of git.xieyaxin.top:topuser/vite-electron

master
npmrun 4 years ago
parent
commit
611b1d1343
  1. 14
      .babelrc
  2. 2
      .gitignore
  3. 7
      a.md
  4. 5
      dist/package-lock.json
  5. 12
      dist/package.json
  6. 13976
      package-lock.json
  7. 88
      package.json
  8. 6
      script/build.ts
  9. 99
      script/dev-runner.ts
  10. 146
      script/webpack/runMain.js
  11. 67
      script/webpack/webpack.main.config.js
  12. 13
      src/main/index.ts

14
.babelrc

@ -0,0 +1,14 @@
{
"comments": false,
"env": {
"main": {
"presets": [
["env", {
"targets": { "node": 7 }
}],
"stage-0"
]
}
},
"plugins": ["@babel/plugin-transform-runtime"]
}

2
.gitignore

@ -2,4 +2,4 @@ node_modules
out
.idea
.vscode
dist
dist/electron

7
a.md

@ -0,0 +1,7 @@
https://www.jianshu.com/p/4699b825d285
// // 指定了就出不来了,官网的解释是:No need to specify which files to include in the app
// "files": [
// "dist/electron/**/*"
// ],

5
dist/package-lock.json

@ -0,0 +1,5 @@
{
"name": "my-electron-app",
"version": "1.0.0",
"lockfileVersion": 1
}

12
dist/package.json

@ -0,0 +1,12 @@
{
"name": "my-electron-app",
"version": "1.0.0",
"description": "description",
"main": "./electron/entry.js",
"scripts": {},
"keywords": [],
"author": "TopOne",
"license": "ISC",
"devDependencies": {},
"dependencies": {}
}

13976
package-lock.json

File diff suppressed because it is too large

88
package.json

@ -4,14 +4,17 @@
"description": "description",
"main": "dist/electron/entry.js",
"scripts": {
"dev": "node script/run --command=ts-node -r tsconfig-paths/register script/dev-runner --watch",
"dev": "node script/run",
"webpack": "node script/webpack/runMain.js",
"deva": "ts-node -r tsconfig-paths/register script/dev-runner --env=development --watch",
"build": "ts-node -r tsconfig-paths/register script/build --env=production && npm run package",
"devaa": "npm run dev:all",
"dev:all": "concurrently -n=vue,ele -c=green,blue \"npm run dev:vue\" \"npm run dev:ele\"",
"dev:vue": "node script/before",
"dev:ele": "node -r ts-node/register script/build-main --env=development --watch",
"dev:test": "electron-forge start --inspect-electron",
"package": "electron-forge package",
"package": "electron-builder build --x64 --win",
"packageaaa": "electron-forge package",
"make": "electron-forge make",
"buildaa": "tsc && vite build",
"serve": "vite preview"
@ -20,11 +23,10 @@
"author": "TopOne",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.58",
"@electron-forge/maker-deb": "^6.0.0-beta.58",
"@electron-forge/maker-rpm": "^6.0.0-beta.58",
"@electron-forge/maker-squirrel": "^6.0.0-beta.58",
"@electron-forge/maker-zip": "^6.0.0-beta.58",
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-stage-0": "^7.8.3",
"@rollup/plugin-alias": "^3.1.4",
"@rollup/plugin-commonjs": "^19.0.1",
"@rollup/plugin-json": "^4.1.0",
@ -32,19 +34,25 @@
"@rollup/plugin-typescript": "^8.2.3",
"@types/minimist": "^1.2.2",
"@types/node": "^15.14.3",
"babel-loader": "^8.2.2",
"babel-minify-webpack-plugin": "^0.3.1",
"cfonts": "^2.9.3",
"chalk": "^4.1.1",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"electron": "^13.1.7",
"electron-builder": "^22.11.7",
"execa": "^5.1.1",
"node-loader": "^2.0.0",
"ts-loader": "^9.2.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"vite-plugin-html": "^2.0.7",
"vitejs-plugin-electron": "^0.1.3"
},
"dependencies": {
"vitejs-plugin-electron": "^0.1.3",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
@ -69,31 +77,53 @@
"vite-plugin-windicss": "^1.2.0",
"windicss": "^3.1.3"
},
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "my_electron_app"
}
},
"dependencies": {},
"build": {
"productName": "my-project",
"appId": "com.example.yourapp",
"copyright": "xxxx",
"directories": {
"output": "out",
"app": "./dist"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"allowToChangeInstallationDirectory": true,
"perMachine": true
},
"dmg": {
"contents": [
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "build/icons/icon.icns"
},
"win": {
"target": [
{
"name": "@electron-forge/maker-rpm",
"config": {}
"target": "nsis",
"arch": [
"ia32"
]
}
]
},
"linux": {
"icon": "build/icons"
}
}
}

6
script/build.ts

@ -3,20 +3,18 @@
import { main } from "../package.json"
import { join } from "path"
import * as electron from "electron"
import * as ora from "ora"
import * as chalk from "chalk"
import * as minimist from "minimist"
import { buildVite } from "./code/runVite"
import { buildElectron } from "./code/runElectron"
import { buildMain, tscCheck } from "./code/runCommon"
import { tscCheck } from "./code/runCommon"
const {buildMain} = require("./webpack/runMain")
import { exec, spawn, ChildProcess } from "child_process"
import { watch, rollup, OutputOptions } from "rollup"
import { waitOn } from "./utils"
import options from "./rollup.config"
// 加载图
const spinner = ora(`${TAG} Electron build...`)
;(async () => {
await tscCheck()

99
script/dev-runner.ts

@ -6,48 +6,77 @@ import { devElectron } from "./code/runElectron"
import { ChildProcess } from "child_process"
import { watch } from "rollup"
import options from "./rollup.config"
const opts = options(process.env.NODE_ENV)
const TAG = "[build-main.ts]"
const { startMain } = require("./webpack/runMain")
;(async () => {
let vitePorcess = await devVite()
console.log("[vite]", chalk.green(`vite ready.`))
const watcher = watch(opts)
let child: ChildProcess | null
let manualRestart = false
watcher.on("change", filename => {
const log = chalk.green(`change -- ${filename}`)
console.log(TAG, log)
})
watcher.on("event", async ev => {
if (ev.code === "END") {
if (child && child.kill) {
manualRestart = true
child.kill()
child = null
setTimeout(() => {
manualRestart = false
}, 5000)
}
try {
child = await devElectron()
console.log("[electron]", chalk.green(`electron ready.`))
child.on("close", () => {
if (!manualRestart) {
vitePorcess.kill()
child.kill()
process.exit()
}
})
} catch (ev) {
console.log(ev.error)
vitePorcess.kill()
child.kill()
process.exit()
}
} else if (ev.code === "ERROR") {
startMain(async () => {
if (child && child.kill) {
manualRestart = true
child.kill()
child = null
setTimeout(() => {
manualRestart = false
}, 5000)
}
try {
child = await devElectron()
console.log("[electron]", chalk.green(`electron ready.`))
child.on("close", () => {
if (!manualRestart) {
// https://juejin.cn/post/6844904071682326535
vitePorcess.kill()
child.kill()
process.exit()
}
})
} catch (ev) {
console.log(ev.error)
vitePorcess.kill()
child.kill()
process.exit()
}
})
})()
// const watcher = watch(opts)
// let child: ChildProcess | null
// let manualRestart = false
// watcher.on("change", filename => {
// const log = chalk.green(`change -- ${filename}`)
// console.log(TAG, log)
// })
// watcher.on("event",async ev => {
// if (ev.code === "END") {
// if (child && child.kill) {
// manualRestart = true
// child.kill()
// child = null
// setTimeout(() => {
// manualRestart = false
// }, 5000)
// }
// try {
// child = await runElectron()
// console.log('[electron]', chalk.green(`electron ready.`))
// child.on("close", () => {
// if (!manualRestart) {
// vitePorcess.kill()
// child.kill()
// process.exit()
// }
// })
// } catch (ev) {
// console.log(ev.error)
// vitePorcess.kill()
// child.kill()
// process.exit()
// }
// } else if (ev.code === "ERROR") {
// console.log(ev.error)
// }
// })

146
script/webpack/runMain.js

@ -0,0 +1,146 @@
const chalk = require('chalk')
const electron = require('electron')
const path = require('path')
const { say } = require('cfonts')
const { spawn } = require('child_process')
const webpack = require('webpack')
// const WebpackDevServer = require('webpack-dev-server')
// const webpackHotMiddleware = require('webpack-hot-middleware')
const mainConfig = require('./webpack.main.config')
// const rendererConfig = require('./webpack.renderer.config')
let electronProcess = null
let manualRestart = false
// let hotMiddleware
function logStats (proc, data) {
let log = ''
log += chalk.yellow.bold(`${proc} Process ${new Array((19 - proc.length) + 1).join('-')}`)
log += '\n\n'
if (typeof data === 'object') {
data.toString({
colors: true,
chunks: false
}).split(/\r?\n/).forEach(line => {
log += ' ' + line + '\n'
})
} else {
log += ` ${data}\n`
}
log += '\n' + chalk.yellow.bold(`${new Array(28 + 1).join('-')}`) + '\n'
console.log(log)
}
function buildMain () {
return new Promise((resolve, reject) => {
mainConfig.mode = 'production'
webpack(mainConfig, (err, stats) => {
if (err) reject(err.stack || err)
else if (stats.hasErrors()) {
let err = ''
stats.toString({
chunks: false,
colors: true
})
.split(/\r?\n/)
.forEach(line => {
err += ` ${line}\n`
})
reject(err)
} else {
resolve(stats.toString({
chunks: false,
colors: true
}))
}
})
})
}
function startMain (callback) {
return new Promise((resolve, reject) => {
mainConfig.entry.main = [path.join(__dirname, '../../src/main/index.ts')]//.concat(mainConfig.entry.main)
mainConfig.mode = 'development'
const compiler = webpack(mainConfig)
compiler.hooks.watchRun.tapAsync('watch-run', (compilation, done) => {
logStats('Main', chalk.white.bold('compiling...'))
// hotMiddleware.publish({ action: 'compiling' })
done()
})
compiler.watch({}, (err, stats) => {
if (err) {
console.log(err)
return
}
logStats('Main', stats)
callback && callback()
resolve()
})
})
}
module.exports = {
startMain,
buildMain,
}
function electronLog (data, color) {
let log = ''
data = data.toString().split(/\r?\n/)
data.forEach(line => {
log += ` ${line}\n`
})
if (/[0-9A-z]+/.test(log)) {
console.log(
chalk[color].bold('┏ Electron -------------------') +
'\n\n' +
log +
chalk[color].bold('┗ ----------------------------') +
'\n'
)
}
}
function greeting () {
const cols = process.stdout.columns
let text = ''
if (cols > 104) text = 'electron-vue'
else if (cols > 76) text = 'electron-|vue'
else text = false
if (text) {
say(text, {
colors: ['yellow'],
font: 'simple3d',
space: false
})
} else console.log(chalk.yellow.bold('\n electron-vue'))
console.log(chalk.blue(' getting ready...') + '\n')
}
// function init () {
// greeting()
// startMain()
// Promise.all([startRenderer(), startMain()])
// .then(() => {
// startElectron()
// })
// .catch(err => {
// console.error(err)
// })
// }
// init()

67
script/webpack/webpack.main.config.js

@ -0,0 +1,67 @@
'use strict'
process.env.BABEL_ENV = 'main'
const path = require('path')
const { dependencies } = require('../../package.json')
const webpack = require('webpack')
const MinifyPlugin = require("babel-minify-webpack-plugin")
let mainConfig = {
entry: {
main: path.join(__dirname, '../../src/main/index.ts')
},
externals: [
...Object.keys(dependencies || {})
],
module: {
rules: [
// { test: /\.ts?$/, loader: "ts-loader", exclude: /node_modules/ },
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/
},
{
test: /\.node$/,
use: 'node-loader'
}
]
},
// https://www.webpackjs.com/configuration/node/
node: {
// __dirname: process.env.NODE_ENV !== 'production', // 不转化为字符串
// __filename: process.env.NODE_ENV !== 'production' // 不转化为字符串
},
output: {
filename: 'entry.js', // [name]
libraryTarget: 'commonjs2',
path: path.join(__dirname, '../../dist/electron')
},
plugins: [
new webpack.NoEmitOnErrorsPlugin()
],
resolve: {
alias: {
"@": path.join(__dirname, "../../src/render"),
"@render": path.join(__dirname, "../../src/render"),
"@main": path.join(__dirname, "../../src/main"),
"@src": path.join(__dirname, "../../src"),
"@root": path.join(__dirname, "../../"),
},
extensions: ['.js', '.json', '.node', '.ts']
},
target: 'electron-main'
}
/**
* Adjust mainConfig for production settings
*/
if (process.env.NODE_ENV === 'production') {
mainConfig.plugins.push(
new MinifyPlugin()
)
}
module.exports = mainConfig

13
src/main/index.ts

@ -1,7 +1,7 @@
/**
* electron
*/
import "@src/common/patch"
// import "@src/common/patch"
import Shared from "../share"
const { join } = require("path")
const { app, BrowserWindow } = require("electron")
@ -12,25 +12,26 @@ Shared.data = {
miniWindow: null,
forceClose: false,
}
console.log(23422);
let isDev = process.env.NODE_ENV == "development" ? true : false
if (!isDev) {
global.__static = require('path')
.join(__dirname, '/resource')
.replace(/\\/g, '\\\\')
// global.__static = require('path')
// .join(__dirname, '/resource')
// .replace(/\\/g, '\\\\')
}
let win;
function createWin() {
// 创建浏览器窗口dsa
// 创建浏览器窗口dsaasdad
win = new BrowserWindow({
width: 1024,
height: 768,
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
// contextIsolation: false,
// preload: join(__dirname, "../../src/preload/index.js"),
},
})

Loading…
Cancel
Save