Skip to content

Instantly share code, notes, and snippets.

@kewp
Created March 1, 2022 10:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kewp/37f45b93e86344dd815e8e6a4e69adf9 to your computer and use it in GitHub Desktop.
Save kewp/37f45b93e86344dd815e8e6a4e69adf9 to your computer and use it in GitHub Desktop.
Reload vite process when file changes (for plugin development)
// this is for when you want to have vite reload when you change
// a plugin you're working on locally.
// i.e. in vite.config.js:
// import plugin from 'my-plugin';
// export default {
//. plugins: [plugin()]
// }
// where your plugin is linked using npm link (or pnpm link)
// and you want your example / test project to reload as soon as you change
// the source of your plugin (in a separate folder / repo).
// vite won't watch files in node_modules (even though the docs claim
// it can https://vitejs.dev/config/#server-watch)
// but even if you do catch the change doing an ordinary server
// restart (e.g. by touching the config file, which is what https://github.com/antfu/vite-plugin-restart
// does) doesn't work because vite doesn't reload the plugin source.
// the following works, though. just put `node watch.js` into your npm dev
// script and you're good to go
const chokidar = require('chokidar');
const {spawn} = require('child_process');
let proc = null;
function server() {
if (proc) proc.kill();
proc = spawn('vite', {stdio: [0,0,0]});
}
chokidar.watch('node_modules/my-plugin/index.js').on('change', (event, path) => {
server();
});
server();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment