devPlugin.ts 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import { ViteDevServer } from "vite";
  2. import path from "path";
  3. export let devPlugin = () => {
  4. return {
  5. name: "dev-plugin",
  6. configureServer(server: ViteDevServer) {
  7. require("esbuild").buildSync({
  8. entryPoints: ["./src/main/mainEntry.ts"],
  9. bundle: true,
  10. platform: "node",
  11. outfile: "./dist/mainEntry.js",
  12. external: ["electron", "pg", "tedious", "mysql", "mysql2", "oracledb", "pg-query-stream", "sqlite3"],
  13. });
  14. // require("esbuild").buildSync({
  15. // entryPoints: ["./src/main/preload.ts"],
  16. // bundle: true,
  17. // platform: "node",
  18. // outfile: "./dist/preload.js",
  19. // external: ["electron", "pg", "tedious", "mysql", "mysql2", "oracledb", "pg-query-stream", "sqlite3"],
  20. // });
  21. if (!server.httpServer) throw new Error("server.httpServer is null check devPlugin.ts ");
  22. // 转移logo文件至dist目录
  23. let targetPath = path.resolve(__dirname, "../dist/logo.ico");
  24. let logoPath = path.resolve(__dirname, "../static/logo.ico");
  25. require("fs").copyFileSync(logoPath, targetPath);
  26. server.httpServer?.once("listening", () => {
  27. let { spawn } = require("child_process");
  28. let addressInfo = server.httpServer?.address() as any;
  29. // console.log(server);
  30. // console.log(addressInfo);
  31. let httpAddress = `http://${addressInfo.address}:${addressInfo.port}`;
  32. let electronProcess = spawn(require("electron").toString(), ["./dist/mainEntry.js", httpAddress], {
  33. cwd: process.cwd(),
  34. stdio: "inherit",
  35. });
  36. electronProcess.on("close", () => {
  37. server.close();
  38. process.exit();
  39. });
  40. });
  41. },
  42. };
  43. };
  44. type ResultObject = {
  45. [key: string]: () => { find: RegExp; code: string };
  46. };
  47. export let getReplacer = () => {
  48. let externalModels = ["os", "fs", "path", "events", "child_process", "crypto", "http", "buffer", "url", "better-sqlite3", "knex"];
  49. let result:ResultObject = {};
  50. for (let item of externalModels) {
  51. result[item] = () => ({
  52. find: new RegExp(`^${item}$`),
  53. code: `const ${item} = require('${item}');export { ${item} as default }`,
  54. });
  55. }
  56. result["electron"] = () => {
  57. let electronModules = ["clipboard", "ipcRenderer", "nativeImage", "shell", "webFrame"].join(",");
  58. return {
  59. find: new RegExp(`^electron$`),
  60. code: `const {${electronModules}} = require('electron');export {${electronModules}}`,
  61. };
  62. };
  63. return result;
  64. };