remove configs
This commit is contained in:
parent
d417c65f63
commit
bc79511ca1
|
@ -1,28 +0,0 @@
|
|||
import { join } from 'path'
|
||||
import { builtinModules } from 'module'
|
||||
import { defineConfig } from 'vite'
|
||||
import pkg from '../package.json'
|
||||
|
||||
export default defineConfig({
|
||||
mode: process.env.NODE_ENV,
|
||||
root: join(__dirname, '../src/main'),
|
||||
build: {
|
||||
outDir: '../../dist/main',
|
||||
lib: {
|
||||
entry: 'index.ts',
|
||||
formats: ['cjs'],
|
||||
},
|
||||
minify: process.env.NODE_ENV === 'production',
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
external: [
|
||||
'electron',
|
||||
...builtinModules,
|
||||
...Object.keys((pkg as Record<string, any>).dependencies || {}),
|
||||
],
|
||||
output: {
|
||||
entryFileNames: '[name].cjs',
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
|
@ -1,28 +0,0 @@
|
|||
import { join } from 'path'
|
||||
import { builtinModules } from 'module'
|
||||
import { defineConfig } from 'vite'
|
||||
import pkg from '../package.json'
|
||||
|
||||
export default defineConfig({
|
||||
mode: process.env.NODE_ENV,
|
||||
root: join(__dirname, '../src/preload'),
|
||||
build: {
|
||||
outDir: '../../dist/preload',
|
||||
lib: {
|
||||
entry: 'index.ts',
|
||||
formats: ['cjs'],
|
||||
},
|
||||
minify: process.env.NODE_ENV === 'production',
|
||||
emptyOutDir: true,
|
||||
rollupOptions: {
|
||||
external: [
|
||||
'electron',
|
||||
...builtinModules,
|
||||
...Object.keys((pkg as Record<string, any>).dependencies || {}),
|
||||
],
|
||||
output: {
|
||||
entryFileNames: '[name].cjs',
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
|
@ -1,115 +0,0 @@
|
|||
import { join } from 'path'
|
||||
import { builtinModules } from 'module'
|
||||
import { defineConfig, Plugin } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
import resolve from 'vite-plugin-resolve'
|
||||
import pkg from '../package.json'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
mode: process.env.NODE_ENV,
|
||||
root: join(__dirname, '../src/renderer'),
|
||||
plugins: [
|
||||
react(),
|
||||
resolveElectron(
|
||||
/**
|
||||
* you can custom other module in here
|
||||
* 🚧 need to make sure custom-resolve-module in `dependencies`, that will ensure that the electron-builder can package them correctly
|
||||
* @example
|
||||
* {
|
||||
* 'electron-store': 'const Store = require("electron-store"); export defalut Store;',
|
||||
* }
|
||||
*/
|
||||
),
|
||||
],
|
||||
base: './',
|
||||
build: {
|
||||
emptyOutDir: true,
|
||||
outDir: '../../dist/renderer',
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': join(__dirname, '../src/renderer/src'),
|
||||
'src': join(__dirname, '../src'),
|
||||
},
|
||||
},
|
||||
server: {
|
||||
host: pkg.env.HOST,
|
||||
port: pkg.env.PORT,
|
||||
},
|
||||
})
|
||||
|
||||
// ------- For use Electron, NodeJs in Renderer-process -------
|
||||
// https://github.com/caoxiemeihao/electron-vue-vite/issues/52
|
||||
export function resolveElectron(resolves: Parameters<typeof resolve>[0] = {}): Plugin[] {
|
||||
const builtins = builtinModules.filter(t => !t.startsWith('_'))
|
||||
|
||||
return [
|
||||
{
|
||||
name: 'vite-plugin-electron-config',
|
||||
config(config) {
|
||||
if (!config.optimizeDeps) config.optimizeDeps = {}
|
||||
if (!config.optimizeDeps.exclude) config.optimizeDeps.exclude = []
|
||||
|
||||
config.optimizeDeps.exclude.push('electron', ...builtins)
|
||||
},
|
||||
},
|
||||
// https://github.com/caoxiemeihao/vite-plugins/tree/main/packages/resolve#readme
|
||||
resolve({
|
||||
electron: electronExport(),
|
||||
...builtinModulesExport(builtins),
|
||||
...resolves,
|
||||
})
|
||||
]
|
||||
|
||||
function electronExport() {
|
||||
return `
|
||||
/**
|
||||
* All exports module see https://www.electronjs.org -> API -> Renderer Process Modules
|
||||
*/
|
||||
const electron = require("electron");
|
||||
const {
|
||||
clipboard,
|
||||
nativeImage,
|
||||
shell,
|
||||
contextBridge,
|
||||
crashReporter,
|
||||
ipcRenderer,
|
||||
webFrame,
|
||||
desktopCapturer,
|
||||
deprecate,
|
||||
} = electron;
|
||||
|
||||
export {
|
||||
electron as default,
|
||||
clipboard,
|
||||
nativeImage,
|
||||
shell,
|
||||
contextBridge,
|
||||
crashReporter,
|
||||
ipcRenderer,
|
||||
webFrame,
|
||||
desktopCapturer,
|
||||
deprecate,
|
||||
}
|
||||
`
|
||||
}
|
||||
|
||||
function builtinModulesExport(modules: string[]) {
|
||||
return modules.map((moduleId) => {
|
||||
const nodeModule = require(moduleId)
|
||||
const requireModule = `const __builtinModule = require("${moduleId}");`
|
||||
const exportDefault = `export default __builtinModule`
|
||||
const exportMembers = Object.keys(nodeModule).map(attr => `export const ${attr} = __builtinModule.${attr}`).join(';\n') + ';'
|
||||
const nodeModuleCode = `
|
||||
${requireModule}
|
||||
|
||||
${exportDefault}
|
||||
|
||||
${exportMembers}
|
||||
`
|
||||
|
||||
return { [moduleId]: nodeModuleCode }
|
||||
}).reduce((memo, item) => Object.assign(memo, item), {})
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue