3.0.2 • Published 3 years ago

electron-watcher-webpack-plugin v3.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

Installation

npm install electron-watcher-webpack-plugin --save

Usage

Add to webpack.config.js plugins array:

const path = require("path");
const { ElectronWatcherWebpackPlugin } = require("electron-watcher-webpack-plugin");
// ...
module.exports = {
  // ...
  plugins: [
    // ...
    new ElectronWatcherWebpackPlugin({
      // Absolute path to directory where node_modules placed. Required
      root: __dirname,
      // List of globs to watch for hard reload. Required
      watch: [path.resolve(__dirname, "./src/main")],
      // Launch electron only once. Default: true. Optional
      once: true,
      // Absolute path to nodemon executable. Default: root/node_modules/.bin/nodemon. Optional
      nodemon: path.resolve(__dirname, "node_modules", ".bin", "nodemon"),
      // Absolute path to electron executable. Default: root/node_modules/.bin/electron. Optional
      electron: path.resolve(__dirname, "node_modules", ".bin", "electron"),
      // Options to pass to `spawn` process. Optional
      options: {
        cwd: path.resolve(__dirname, "..")
      }
    }),
    // ...
  ];
  // ...
}

And watch files changes inside main.js:

const { app, BrowserWindow } = require("electron");
// ...
require("electron-watcher-webpack-plugin").watch({
  // List of globs for hard refresh
  hard: [path.resolve(__dirname, "../main")],
  // List of globs for soft refresh
  soft: [path.resolve(__dirname, "../renderer")]
  // Watching enabled only in dev environment, but you can force watching anytime. Default: false. Optional
  forceWatch: false
});
// ...
3.0.2

3 years ago

3.0.1

4 years ago

3.0.0

5 years ago

2.0.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago