forge/packages/plugin/local-electron
VerteDinde 81160c598e
v7.3.0
2024-02-21 09:55:47 -08:00
..
src refactor: better internal type safety for hooks (#2995) 2022-10-26 14:35:32 -07:00
test refactor: better internal type safety for hooks (#2995) 2022-10-26 14:35:32 -07:00
README.md build: lint JS in Markdown (#3251) 2023-06-15 14:24:38 -07:00
package.json v7.3.0 2024-02-21 09:55:47 -08:00

README.md

plugin-local-electron

This plugin allows you to both run and build your app using a local build of Electron. This can be incredibly useful if you want to test a feature or a bug fix in your app before making a PR up to the Electron repository.

Note: This plugin should only be used by people who are building Electron locally themselves. If you want to set up a local build of Electron, you should check out Electron Build Tools.

// forge.config.js

module.exports = {
  plugins: [
    {
      name: '@electron-forge/plugin-local-electron',
      config: {
        electronPath: '/Users/me/projects/electron/out/Testing'
      }
    }
  ]
};