ci: remove old build script

This commit is contained in:
Derrick Hammer 2023-07-17 11:39:27 -04:00
parent 1c8a640c48
commit 2f648455d7
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 62 deletions

View File

@ -1,62 +0,0 @@
import esbuild from "esbuild";
esbuild.buildSync({
entryPoints: ["src/main/background.ts"],
outfile: "dist/background.js",
format: "iife",
bundle: true,
legalComments: "external",
// minify: true
define: {
global: "self",
},
inject: ["./polyfill.js"],
external: ["node:stream"],
});
esbuild.buildSync({
entryPoints: ["src/main/bootloader.ts"],
outfile: "dist/bootloader.js",
format: "iife",
bundle: true,
legalComments: "external",
// minify: true
define: {
global: "self",
},
});
esbuild.buildSync({
entryPoints: ["src/main/bridge.ts"],
outfile: "dist/bridge.js",
format: "iife",
bundle: true,
legalComments: "external",
// minify: true
define: {
global: "self",
},
}); /*
esbuild.buildSync({
entryPoints: ["src/main/crypto.ts"],
outfile: "dist/crypto.js",
format: "iife",
bundle: true,
legalComments: "external",
// minify: true
define: {
global: "window",
},
inject: ["./polyfill.js"],
});
esbuild.buildSync({
entryPoints: ["src/main/cryptoLoader.ts"],
outfile: "dist/cryptoLoader.js",
format: "iife",
bundle: true,
legalComments: "external",
// minify: true
define: {
global: "window",
}
});
*/