Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | import path from 'node:path';
import type { Plugin as VitePlugin } from 'vite';
type Options = {
rootDir: string;
packages: string[];
};
/**
* Vite plugin that watches for changes in internal packages and invalidates the module graph.
*
* @param options - The options for the plugin.
* @param options.rootDir - The absolute path to the monorepo root directory.
* @param options.packages - The names of the directories containing the packages to watch.
* @returns The Vite plugin.
*/
export function watchInternalPackages({
rootDir,
packages,
}: Options): VitePlugin {
return {
name: 'ocap-kernel:watch-internal-packages',
configureServer(server) {
for (const packageDirname of packages) {
server.watcher.add(
path.resolve(rootDir, `packages/${packageDirname}/dist`),
);
}
server.watcher.on('change', (file) => {
if (packages.some((pkg) => file.includes(`${pkg}/dist`))) {
server.moduleGraph.invalidateAll();
}
});
},
};
}
|