start.js 378 B

1234567891011121314151617
  1. const concurrently = require("concurrently");
  2. concurrently(
  3. [
  4. { command: "npm run dev:vite", prefixColor: "green", name: "renderer" },
  5. { command: "npm run dev:main", prefixColor: "magenta", name: "main" },
  6. ],
  7. {
  8. killOthers: ["failure", "success"],
  9. }
  10. ).then(
  11. () => {
  12. console.log("exit!");
  13. },
  14. () => {
  15. console.log("exit!");
  16. }
  17. );