mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
117 lines
2.9 KiB
TypeScript
117 lines
2.9 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import path from "path";
|
|
import fs from "fs/promises";
|
|
import { watch } from "turbowatch";
|
|
import { $, within } from "zx";
|
|
|
|
const sodiumNativePrebuildPath = path.join(
|
|
`node_modules`,
|
|
`@notesnook`,
|
|
`crypto`,
|
|
`node_modules`,
|
|
`@notesnook`,
|
|
`sodium`,
|
|
`node_modules`,
|
|
`sodium-native`,
|
|
`prebuilds`
|
|
);
|
|
let isServerRunning = false;
|
|
|
|
async function main() {
|
|
const { shutdown } = await watch({
|
|
project: path.join(__dirname, ".."),
|
|
cwd: path.join(__dirname, ".."),
|
|
triggers: [
|
|
{
|
|
expression: [
|
|
"allof",
|
|
["not", ["dirname", "node_modules"]],
|
|
["match", "*.ts", "basename"]
|
|
],
|
|
name: "dev",
|
|
// retry: { retries: 0 },
|
|
onTeardown: async () => {
|
|
await fs.rm("./build/", { force: true, recursive: true });
|
|
},
|
|
onChange: async ({ spawn: $, first, log }) => {
|
|
if (first) {
|
|
await fs.rm("./build/", { force: true, recursive: true });
|
|
}
|
|
|
|
await $`npm run bundle`;
|
|
await $`tsc`;
|
|
|
|
if (first) {
|
|
await fs.cp(sodiumNativePrebuildPath, "build/prebuilds", {
|
|
recursive: true,
|
|
force: true
|
|
});
|
|
}
|
|
|
|
if (!isServerRunning) {
|
|
await spawnAndWaitUntil(
|
|
path.join(__dirname, "..", "..", "web"),
|
|
"npm run start:desktop",
|
|
(data) => data.includes("Network: use --host to expose")
|
|
);
|
|
isServerRunning = true;
|
|
}
|
|
|
|
await $`npx electron ${path.join("build", "electron.js")}`;
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
// SIGINT is the signal sent when we press Ctrl+C
|
|
process.once("SIGINT", () => {
|
|
void shutdown();
|
|
});
|
|
}
|
|
|
|
main();
|
|
|
|
function spawnAndWaitUntil(
|
|
cwd: string,
|
|
cmd: string,
|
|
predicate: (data: string) => boolean
|
|
) {
|
|
return new Promise((resolve) => {
|
|
within(async () => {
|
|
$.env = process.env;
|
|
$.env.NO_COLOR = "true";
|
|
$.quote = (c) => c;
|
|
|
|
try {
|
|
const s = $`cd ${cwd} && ${cmd}`;
|
|
s.stdout.on("data", (data) => {
|
|
if (predicate(data)) resolve(undefined); //
|
|
});
|
|
await s;
|
|
} catch (e) {
|
|
//ignore
|
|
} finally {
|
|
isServerRunning = false;
|
|
}
|
|
});
|
|
});
|
|
}
|