24 lines
467 B
JavaScript
24 lines
467 B
JavaScript
import * as esbuild from "esbuild";
|
|
|
|
const watch = process.argv.includes("--watch");
|
|
|
|
const ctx = await esbuild.context({
|
|
entryPoints: ["./src/extension.ts"],
|
|
bundle: true,
|
|
outfile: "dist/extension.js",
|
|
external: ["vscode"],
|
|
format: "cjs",
|
|
platform: "node",
|
|
target: "es2022",
|
|
sourcemap: true,
|
|
logLevel: "info",
|
|
});
|
|
|
|
if (watch) {
|
|
await ctx.watch();
|
|
console.log("Watching for changes...");
|
|
} else {
|
|
await ctx.rebuild();
|
|
await ctx.dispose();
|
|
}
|