mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 05:11:29 +08:00
15 lines
410 B
JavaScript
15 lines
410 B
JavaScript
/* jshint esversion: 8 */
|
|
const esbuild = require("esbuild");
|
|
const sveltePlugin = require("esbuild-svelte");
|
|
|
|
esbuild
|
|
.build({
|
|
entryPoints: ["main.js"],
|
|
bundle: true,
|
|
minify: true,
|
|
outfile: "../ipc_websocket.js",
|
|
plugins: [sveltePlugin({compileOptions: {css: true}})],
|
|
logLevel: "info",
|
|
sourcemap: "inline",
|
|
})
|
|
.catch(() => process.exit(1)); |