Skip to content

Instantly share code, notes, and snippets.

@hirasso
Last active February 15, 2025 09:49
Show Gist options
  • Save hirasso/604e3776ecfb402c8513154a8ae46cba to your computer and use it in GitHub Desktop.
Save hirasso/604e3776ecfb402c8513154a8ae46cba to your computer and use it in GitHub Desktop.
A vite plugin to run a callback anytime `vite serve` is stopped. Use case: Ensure the build folder is always up to date.
import { defineConfig } from "vite";
import { runAfterServe } from "./vite.runAfterServe.ts";
import { execSync } from "child_process";
export default defineConfig(async ({ mode }) => {
return {
plugins: [
runAfterServe(() => {
execSync("pnpm run build");
}),
],
};
});
import { Plugin, ResolvedConfig } from "vite";
import { exit } from "process";
type Callback = (config: ResolvedConfig) => void;
/**
* Automatically run a callback each time `vite` or `vite serve` is stopped
*/
export function runAfterServe(callback: Callback): Plugin {
let resolvedConfig: ResolvedConfig;
let exitHandlersBound = false;
return {
name: "buildAfterServe",
apply: "serve",
configResolved(config) {
resolvedConfig = config;
},
configureServer() {
if (exitHandlersBound) {
return;
}
process.on("exit", () => callback(resolvedConfig));
process.on("SIGINT", () => exit());
process.on("SIGTERM", () => exit());
process.on("SIGHUP", () => exit());
exitHandlersBound = true;
},
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment