@docuseal/react
Version:
DocuSeal React components to integrate documents signing process into apps. ✍️
25 lines (21 loc) • 417 B
JavaScript
const { build } = require("esbuild");
const shared = {
bundle: true,
entryPoints: ["./src/index.ts"],
external: ["react"],
logLevel: "info",
minify: true,
sourcemap: false,
};
build({
...shared,
format: "esm",
outfile: "./dist/index.esm.js",
target: ["esnext", "node12.22.0"],
});
build({
...shared,
format: "cjs",
outfile: "./dist/index.cjs.js",
target: ["esnext", "node12.22.0"],
});