⚡How to - vite-plugin-watch-and-run
Installation
npm i -D vite-plugin-watch-and-runConfiguration
Add watchAndRun plugin with the following configuration:
watch: a glob pattern to watch for changes. This will be matched against the absolute path for altered files.run: a command to trigger when a file change is detected (You can be very creative 🥳!)
vite.config.js
import path from 'path'
import watchAndRun from 'vite-plugin-watch-and-run'
/** @type {import('vite').UserConfig} */
const config = {
plugins: [
watchAndRun([
{
name: 'gen',
watchKind: ['add', 'change', 'unlink'],
watch: path.resolve('src/**/*.(gql|svelte)'),
run: 'npm run gen',
delay: 300
}
])
]
}
export default configSide Notes
-
Full list of
watchKindcan be found here: https://github.com/paulmillr/chokidar#api -
delayis good in case you have 200 files added realy fast! Like this the cmd is executed only once. -
For the
runcommand we recommend to usenpm run xxxas it will work fornpm,yarnandpnpm🙃