From ecd73c9df87abea91ba770ee63954a959bec1e55 Mon Sep 17 00:00:00 2001 From: Black Ram <67595890+BlackRam-oss@users.noreply.github.com> Date: Thu, 27 Feb 2025 15:07:42 +0100 Subject: [PATCH] Update version to 0.10.20 in package.json and disable splitting in tsup.config.ts --- package.json | 2 +- tsup.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 08cfe66e..2e379e73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@drincs/pixi-vn", - "version": "0.10.19", + "version": "0.10.20", "type": "module", "description": "Pixi'VN is a npm package that provides various features for creating visual novels.", "main": "./dist/index.cjs", diff --git a/tsup.config.ts b/tsup.config.ts index 9db421d9..9bb1f31e 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -6,7 +6,7 @@ export default defineConfig({ format: ["cjs", "esm"], // Build for commonJS and ESmodules dts: true, // Generate declaration file (.d.ts) treeshake: true, - // splitting: false, + splitting: false, // sourcemap: true, // Generate sourcemap, it was removed because otherwise it would explode clean: true, minify: true,