diff --git a/changelog.md b/changelog.md index 2a48197..1751119 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-07-29 - 2.2.1 - fix(exports) +Fix package.json exports field syntax + +- Fixed exports field syntax from "./" to "." for proper module resolution + ## 2025-07-29 - 2.2.0 - feat(exports) Modernize package exports and expose watcher class diff --git a/package.json b/package.json index 5b0b62c..5ddadcc 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@git.zone/tswatch", - "version": "2.2.0", + "version": "2.2.1", "private": false, "description": "A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.", "exports": { - "./": "./dist_ts/index.js" + ".": "./dist_ts/index.js" }, "type": "module", "author": "Lossless GmbH", diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 26d8bcc..cb5ecc3 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tswatch', - version: '2.2.0', + version: '2.2.1', description: 'A development tool for automatically watching and re-compiling TypeScript projects upon detecting file changes, enhancing developer workflows.' }