railbird-gql/start.js

17 lines
434 B
JavaScript
Raw Normal View History

2024-02-06 16:42:41 -07:00
const { spawn } = require("child_process");
const envName = process.argv[2];
const expoStart = spawn("expo", ["start", "-c"]);
expoStart.stdout.on("data", (data) => {
if (data.toString().includes("Logs for your project will appear below")) {
expoStart.kill("SIGINT");
}
});
expoStart.on("close", () => {
const env = { ...process.env, NODE_ENV: envName };
2024-02-06 17:15:46 -07:00
spawn("expo", ["run:android"], { env, stdio: "inherit" });
2024-02-06 16:42:41 -07:00
});