devPlugin.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import { ViteDevServer } from "vite";
  2. export let devPlugin = () => {
  3. return {
  4. name: "dev-plugin",
  5. configureServer(server: ViteDevServer) {
  6. require("esbuild").buildSync({
  7. entryPoints: ["./src/main/mainEntry.ts"],
  8. bundle: true,
  9. platform: "node",
  10. outfile: "./dist/mainEntry.js",
  11. external: ["electron"],
  12. });
  13. // 修复 'server.httpServer' is possibly 'null'. 的问题
  14. if(!server.httpServer) throw new Error("server.httpServer is null check devPlugin.ts");
  15. server.httpServer?.once("listening", () => {
  16. let { spawn } = require("child_process");
  17. let addressInfo = server.httpServer?.address() as any;
  18. let httpAddress = `http://${addressInfo.address}:${addressInfo.port}`;
  19. let electronProcess = spawn(require("electron").toString(), ["./dist/mainEntry.js", httpAddress], {
  20. cwd: process.cwd(),
  21. stdio: "inherit",
  22. });
  23. electronProcess.on("close", () => {
  24. server.close();
  25. process.exit();
  26. });
  27. });
  28. },
  29. };
  30. };
  31. export let getReplacer = () => {
  32. let externalModels = ["os", "fs", "path", "events", "child_process", "crypto", "http", "buffer", "url", "better-sqlite3", "knex"];
  33. // let result = {};
  34. let result: { [key: string]: () => { find: RegExp, code: string } } = {};
  35. for (let item of externalModels) {
  36. result[item] = () => ({
  37. find: new RegExp(`^${item}$`),
  38. code: `const ${item} = require('${item}');export { ${item} as default }`,
  39. });
  40. }
  41. // if(!result["electron"]) throw new Error("getReplacer() electron not exists");
  42. result["electron"] = () => {
  43. let electronModules = ["clipboard", "ipcRenderer", "nativeImage", "shell", "webFrame"].join(",");
  44. return {
  45. find: new RegExp(`^electron$`),
  46. code: `const {${electronModules}} = require('electron');export {${electronModules}}`,
  47. };
  48. };
  49. return result;
  50. };