mirror of
https://github.com/remotely-save/remotely-save.git
synced 2024-06-07 21:10:45 +00:00
73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
import dotenv from "dotenv/config";
|
|
import esbuild from "esbuild";
|
|
import process from "process";
|
|
import inlineWorkerPlugin from "esbuild-plugin-inline-worker";
|
|
// import builtins from 'builtin-modules'
|
|
|
|
const banner = `/*
|
|
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
|
if you want to view the source, please visit the github repository of this plugin
|
|
*/
|
|
`;
|
|
|
|
console.log(`esbuild version = ${esbuild.version}`);
|
|
|
|
const prod = process.argv[2] === "production";
|
|
|
|
const DEFAULT_DROPBOX_APP_KEY = process.env.DROPBOX_APP_KEY || "";
|
|
const DEFAULT_ONEDRIVE_CLIENT_ID = process.env.ONEDRIVE_CLIENT_ID || "";
|
|
const DEFAULT_ONEDRIVE_AUTHORITY = process.env.ONEDRIVE_AUTHORITY || "";
|
|
|
|
esbuild
|
|
.context({
|
|
banner: {
|
|
js: banner,
|
|
},
|
|
loader: {
|
|
".svg": "text",
|
|
},
|
|
entryPoints: ["./src/main.ts"],
|
|
bundle: true,
|
|
external: [
|
|
"obsidian",
|
|
"electron",
|
|
"fs",
|
|
"tls",
|
|
"net",
|
|
"http",
|
|
"https",
|
|
"vm",
|
|
// ...builtins
|
|
],
|
|
inject: ["./esbuild.injecthelper.mjs"],
|
|
format: "cjs",
|
|
// watch: !prod, // no longer valid in esbuild 0.17
|
|
target: "es2016",
|
|
logLevel: "info",
|
|
sourcemap: prod ? false : "inline",
|
|
treeShaking: true,
|
|
minify: prod,
|
|
outfile: "main.js",
|
|
define: {
|
|
"process.env.DEFAULT_DROPBOX_APP_KEY": `"${DEFAULT_DROPBOX_APP_KEY}"`,
|
|
"process.env.DEFAULT_ONEDRIVE_CLIENT_ID": `"${DEFAULT_ONEDRIVE_CLIENT_ID}"`,
|
|
"process.env.DEFAULT_ONEDRIVE_AUTHORITY": `"${DEFAULT_ONEDRIVE_AUTHORITY}"`,
|
|
global: "window",
|
|
"process.env.NODE_DEBUG": `undefined`, // ugly fix
|
|
"process.env.DEBUG": `undefined`, // ugly fix
|
|
},
|
|
plugins: [inlineWorkerPlugin()],
|
|
})
|
|
.then((context) => {
|
|
if (process.argv.includes("--watch")) {
|
|
// Enable watch mode
|
|
context.watch();
|
|
} else {
|
|
// Build once and exit if not in watch mode
|
|
context.rebuild().then((result) => {
|
|
context.dispose();
|
|
});
|
|
}
|
|
})
|
|
.catch(() => process.exit(1));
|