add utils to external

This commit is contained in:
Aakansha Doshi 2024-05-06 15:25:44 +05:30
parent 549786a504
commit e48eed6b21
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import { execSync } from "child_process";
const createDevBuild = async () => {
return await esbuild.build({
entryPoints: ["../../examples/excalidraw/with-script-in-browser/index.tsx"],
entryPoints: ["../../examples/excalidraw/with-script-in-browser/index.tsx"],
outfile:
"../../examples/excalidraw/with-script-in-browser/public/bundle.js",
define: {

View File

@ -53,6 +53,7 @@ const browserConfig = {
".woff2": "copy",
".ttf": "copy",
},
external: ["@excalidraw/utils"],
};
const createESMBrowserBuild = async () => {
// Development unminified build with source maps
@ -107,6 +108,7 @@ const rawConfig = {
".json": "copy",
},
packages: "external",
external: ["@excalidraw/utils"],
};
const createESMRawBuild = async () => {