electron-userland / electron-prebuilt-compile

electron-prebuilt with Babel and React built-in
168 stars 56 forks source link

How to integrate with electron-packager #94

Open oOtroyOo opened 3 years ago

oOtroyOo commented 3 years ago

First of all , now I can run these code running in VSCode or command line

//const {app, BrowserWindow} = require('electron') 
import { app, BrowserWindow } from 'electron'

if I use electron-packager , by this script

"package": "electron-packager . --overwrite --platform=win32 --out=out --icon=app.ico --electron-version=11.3.0"

it can be build , but it thows error while running:

image

It is obvious that ES6 capabilities dosen't work

How to fix it?

by the way , I noticed that current codes in file electron.cmd is diffrent from standard file of Electronm, is that the reason?