Last active
February 15, 2025 09:49
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | |
}), | |
], | |
}; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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