Add Electron builder jazz

This commit is contained in:
Vendicated
2023-04-03 05:44:17 +02:00
parent 36d4e90113
commit 307051141d
7 changed files with 1186 additions and 27 deletions

View File

@@ -19,12 +19,12 @@ await Promise.all([
createContext({
...NodeCommonOpts,
entryPoints: ["src/main/index.ts"],
outfile: "dist/main.js"
outfile: "dist/js/main.js"
}),
createContext({
...NodeCommonOpts,
entryPoints: ["src/preload/index.ts"],
outfile: "dist/preload.js"
outfile: "dist/js/preload.js"
})
]);