buildPlugin.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //plugins\buildPlugin.ts
  2. import path from "path";
  3. import fs from "fs";
  4. class BuildObj {
  5. //编译主进程代码
  6. buildMain() {
  7. require("esbuild").buildSync({
  8. entryPoints: ["./src/main/mainEntry.ts"],
  9. bundle: true,
  10. platform: "node",
  11. minify: true,
  12. outfile: "./dist/mainEntry.js",
  13. external: ["electron"],
  14. });
  15. }
  16. //为生产环境准备package.json
  17. preparePackageJson() {
  18. let pkgJsonPath = path.join(process.cwd(), "package.json");
  19. let localPkgJson = JSON.parse(fs.readFileSync(pkgJsonPath, "utf-8"));
  20. let electronConfig = localPkgJson.devDependencies.electron.replace("^", "");
  21. localPkgJson.main = "mainEntry.js";
  22. delete localPkgJson.scripts;
  23. delete localPkgJson.devDependencies;
  24. localPkgJson.devDependencies = { electron: electronConfig };
  25. let tarJsonPath = path.join(process.cwd(), "dist", "package.json");
  26. fs.writeFileSync(tarJsonPath, JSON.stringify(localPkgJson));
  27. fs.mkdirSync(path.join(process.cwd(), "dist/node_modules"));
  28. }
  29. //使用electron-builder制成安装包
  30. buildInstaller() {
  31. let options = {
  32. config: {
  33. directories: {
  34. output: path.join(process.cwd(), "release"),
  35. app: path.join(process.cwd(), "dist"),
  36. },
  37. files: ["**"],
  38. extends: null,
  39. productName: "fc-ele",
  40. appId: "com.fcele.kindring.cn",
  41. asar: true,
  42. nsis: {
  43. oneClick: true,
  44. perMachine: true,
  45. allowToChangeInstallationDirectory: false,
  46. createDesktopShortcut: true,
  47. createStartMenuShortcut: true,
  48. shortcutName: "fc-ele",
  49. },
  50. publish: [{ provider: "generic", url: "http://localhost:5500/" }],
  51. },
  52. project: process.cwd(),
  53. };
  54. return require("electron-builder").build(options);
  55. }
  56. }
  57. export let buildPlugin = () => {
  58. return {
  59. name: "build-plugin",
  60. closeBundle: () => {
  61. let buildObj = new BuildObj();
  62. buildObj.buildMain();
  63. buildObj.preparePackageJson();
  64. buildObj.buildInstaller();
  65. },
  66. };
  67. };