From ed9bd5d2485bbabeef699c5c33a0acfe7d713ab4 Mon Sep 17 00:00:00 2001 From: Black Ram <67595890+BlackRam-oss@users.noreply.github.com> Date: Wed, 29 Jan 2025 10:14:59 +0100 Subject: [PATCH] Normalize formatting of entryPoints and noExternal in tsup.config.ts --- tsup.config.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsup.config.ts b/tsup.config.ts index 2e18a123..9bb1f31e 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -12,7 +12,6 @@ export default defineConfig({ minify: true, bundle: true, skipNodeModulesBundle: false, // Skip bundling of node_modules - entryPoints: ['src/index.ts'], - noExternal: ['pixi.js', '@pixi/sound', '@pixi/devtools'], - + entryPoints: ["src/index.ts"], + noExternal: ["pixi.js", "@pixi/sound", "@pixi/devtools"], });