From de02e015e85c2a9c8f8c29f2a00acae39276a9eb Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 2 Dec 2024 16:05:44 +0100 Subject: [PATCH] fix(package): Fix duplicate node export in package.json --- changelog.md | 5 +++++ package.json | 1 + ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index f8e583b..129e298 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-12-02 - 1.5.1 - fix(package) +Fix duplicate node export in package.json + +- Resolved a duplication issue with the './node' export in package.json exports field. + ## 2024-12-02 - 1.5.0 - feat(core) Refactor project structure for better modularity and code organization diff --git a/package.json b/package.json index a22bd89..ebc7a5e 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "typings": "dist_ts_web/index.d.ts", "exports": { ".": "./dist_ts/index.js", + "./node": "./dist_ts/index.js", "./web": "./dist_ts_web/index.js", "./shared": "./dist_ts_shared/index.js", "./interfaces": "./dist_ts_shared/interfaces/index.js" diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0311e55..a150e72 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-document', - version: '1.5.0', + version: '1.5.1', description: 'A sophisticated framework for dynamically generating and rendering business documents like invoices with modern web technologies, featuring PDF creation, templating, and automation.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 0311e55..a150e72 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-document', - version: '1.5.0', + version: '1.5.1', description: 'A sophisticated framework for dynamically generating and rendering business documents like invoices with modern web technologies, featuring PDF creation, templating, and automation.' }