chore: UPDATE

This commit is contained in:
草鞋没号 2021-11-02 10:19:31 +08:00
parent 3210954fac
commit ad9e8a4937
3 changed files with 24 additions and 6 deletions

16
react-ts/src/global.d.ts vendored Normal file
View File

@ -0,0 +1,16 @@
export {}
declare global {
interface Window {
/** Expose some Api through preload script */
bridge: {
__dirname: string
__filename: string
fs: typeof import('fs')
path: typeof import('path')
ipcRenderer: import('electron').IpcRenderer
removeLoading: () => void
}
}
}

View File

@ -15,7 +15,7 @@ function eventHandle(ev: RollupWatcherEvent) {
if (ev.code === 'ERROR') {
console.error(TAG, ev.error)
} else if (ev.code === 'BUNDLE_START') {
console.log(TAG, `Rebuild start - ${ev.output}`)
console.log(TAG, `Rebuild - ${ev.output}`)
}
}

View File

@ -2,8 +2,8 @@ import { builtinModules } from 'module'
import { RollupOptions } from 'rollup'
import commonjs from '@rollup/plugin-commonjs'
import { nodeResolve } from '@rollup/plugin-node-resolve'
// import typescript from '@rollup/plugin-typescript'
import swc from 'rollup-plugin-swc'
import typescript from '@rollup/plugin-typescript'
// import swc from 'rollup-plugin-swc'
function optionsFactory(options: RollupOptions): RollupOptions {
return {
@ -15,9 +15,11 @@ function optionsFactory(options: RollupOptions): RollupOptions {
},
plugins: [
commonjs(),
nodeResolve(),
// typescript(),
swc(),
nodeResolve({
extensions: ['.ts', '.js', 'json'],
}),
typescript(),
// swc(), Error: Cannot find module 'regenerator-runtime'
],
external: [
'electron',