electron-webpack
electron-webpack copied to clipboard
Scripts and configurations to compile Electron applications using webpack
it seem to does not work if i config it on package.json . i set the following code in package.json ```json { "file":["dist"] } ``` the node_modules will still copy...
Based on known good [electron-webpack-quick-start](https://github.com/electron-userland/electron-webpack-quick-start) (main process HMR works fine from the get-go, app restarts as expected when editing `main/index.js`): Add `webpack.additions.main.js` with the following: ```js var path = require("path");...
I know there's `electron-webpack dev` which builds and runs in dev watch mode. But if the app's already built, how do we just run it? For example, suppose I exit...
There is this example of using electron-webpack in Angular https://github.com/kendraio/angular-electron-webpack-example Just about every example I can find imports styles in a way that breaks view encapsulation of the styles. The...
Docs don't say how to run the build output. The docs go on to recommend using `electron-builder` as a next step But how do we just run it?
* **Version**: 2.8.2 Sorry, that's already my second question. Since I failed to use electron-webpack with Yarn Workspaces, I am using an external directory through an alias, like this: ```...
* **Version**: "electron-builder": "^22.4.1", * **Target**: Linux, OSX, Windows Hi there, I am trying to use pack sqlite and use it in the renderer process, but get the following error...
Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...
electron-webpack中关于electron-builder的优化配置在哪里被应用了? ```json { extraMetadata: { main: "main.js" }, files: [{ from: ".", filter: ["package.json"] }, { from: `${distDir}/main` }, { from: `${distDir}/renderer` }, { from: `${distDir}/renderer-dll` }], extraResources: [{ from:...
Right now, if I want to run tests, I need to: - install jest (or another test framework) - add manually a babel.config.js in the root folder, so that jest...