nichts/modules/styling/config.bak/config.js

22 lines
351 B
JavaScript
Raw Normal View History

2024-07-07 13:23:38 +02:00
const main = "/tmp/ags/main.js";
try {
await Utils.execAsync([
"bun",
"build",
`${App.configDir}/main.ts`,
"--outfile",
main,
"--external",
"resource://*",
"--external",
"gi://*",
"--external",
"file://*",
]);
await import(`file://${main}`);
} catch (error) {
console.error(error);
App.quit();
}