Monaco for Discord Desktop
This commit is contained in:
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
import esbuild from "esbuild";
|
||||
import { commonOpts, gitHashPlugin, globPlugins, makeAllPackagesExternalPlugin } from "./common.mjs";
|
||||
import { commonOpts, fileIncludePlugin, gitHashPlugin, globPlugins, makeAllPackagesExternalPlugin } from "./common.mjs";
|
||||
|
||||
/**
|
||||
* @type {esbuild.BuildOptions}
|
||||
@ -30,7 +30,7 @@ const nodeCommonOpts = {
|
||||
target: ["esnext"],
|
||||
minify: true,
|
||||
sourcemap: "linked",
|
||||
plugins: [makeAllPackagesExternalPlugin],
|
||||
plugins: [...commonOpts.plugins, makeAllPackagesExternalPlugin],
|
||||
};
|
||||
|
||||
await Promise.all([
|
||||
@ -55,7 +55,8 @@ await Promise.all([
|
||||
external: ["plugins", "git-hash"],
|
||||
plugins: [
|
||||
globPlugins,
|
||||
gitHashPlugin
|
||||
gitHashPlugin,
|
||||
fileIncludePlugin
|
||||
],
|
||||
define: {
|
||||
IS_WEB: "false"
|
||||
@ -65,6 +66,6 @@ await Promise.all([
|
||||
console.error("Build failed");
|
||||
console.error(err.message);
|
||||
// make ci fail
|
||||
if (!watch)
|
||||
if (!commonOpts.watch)
|
||||
process.exitCode = 1;
|
||||
});
|
||||
|
Reference in New Issue
Block a user