chore: root cleanup

This commit is contained in:
LukeGus
2026-07-17 00:20:46 -05:00
parent 2453545b9c
commit 82662c327c
57 changed files with 57 additions and 187 deletions
+12
View File
@@ -0,0 +1,12 @@
const fs = require("fs");
const path = require("path");
exports.default = async function afterPack(context) {
const { targets, appOutDir } = context;
const isDir = targets.some((t) => t.name === "dir");
if (!isDir) return;
const markerPath = path.join(appOutDir, ".portable");
fs.writeFileSync(markerPath, "");
};