From 151aeb1e8797257d487da27baf647d699db010d2 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Mon, 23 Jun 2025 10:58:29 -0700 Subject: [PATCH] **chore: update tsconfig paths and bump version** ### Changes: - **tsconfig.browser.json**: - Replaced `examples/**/*` with `demo/**/*` in the `include` paths. - **src/utils/version.ts**: - Updated `VERSION` constant from `0.9.1` to `0.9.2`. ### Purpose: Aligned the TypeScript configuration with the recent folder structure update for better organization. Incremented the version to `0.9.2` to reflect the latest improvements. --- src/utils/version.ts | 2 +- tsconfig.browser.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/version.ts b/src/utils/version.ts index fd9cc8a9..80831a84 100644 --- a/src/utils/version.ts +++ b/src/utils/version.ts @@ -3,4 +3,4 @@ * Do not modify this file directly. */ -export const VERSION = '0.9.1'; +export const VERSION = '0.9.2'; diff --git a/tsconfig.browser.json b/tsconfig.browser.json index 2205ba2f..b8deca5b 100644 --- a/tsconfig.browser.json +++ b/tsconfig.browser.json @@ -20,7 +20,7 @@ }, "include": [ "src/**/*", - "examples/**/*" + "demo/**/*" ], "exclude": [ "node_modules",