fix(core): Fixed export paths in package configuration

This commit is contained in:
Philipp Kunz 2024-12-18 20:39:44 +01:00
parent d53bc96947
commit 871ed4fc91
5 changed files with 7882 additions and 3952 deletions

View File

@ -1,5 +1,11 @@
# Changelog # Changelog
## 2024-12-18 - 1.0.8 - fix(core)
Fixed export paths in package configuration
- Updated exports paths in package.json for proper module resolution.
- Fixed export statement in ts/index.ts to reference the correct path for interface exports.
## 2024-12-18 - 1.0.7 - fix(project) ## 2024-12-18 - 1.0.7 - fix(project)
Corrected misalignment in file structure and package metadata. Corrected misalignment in file structure and package metadata.

View File

@ -3,8 +3,10 @@
"version": "1.0.7", "version": "1.0.7",
"private": false, "private": false,
"description": "A TypeScript package providing utility interfaces and classes for digital contract management and integration, leveraging modular design and business context integration.", "description": "A TypeScript package providing utility interfaces and classes for digital contract management and integration, leveraging modular design and business context integration.",
"main": "dist_ts/index.js", "exports": {
"typings": "dist_ts/index.d.ts", ".": "./ts/index.js",
"./interfaces": "./dist_ts_interfaces/index.js"
},
"type": "module", "type": "module",
"author": "Task Venture Capital GmbH", "author": "Task Venture Capital GmbH",
"license": "MIT", "license": "MIT",
@ -14,15 +16,15 @@
"buildDocs": "(tsdoc)" "buildDocs": "(tsdoc)"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.25", "@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsbundle": "^2.0.5", "@git.zone/tsbundle": "^2.1.0",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.44", "@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.5.3",
"@types/node": "^20.8.7" "@types/node": "^22.10.2"
}, },
"dependencies": { "dependencies": {
"@tsclass/tsclass": "^4.0.46" "@tsclass/tsclass": "^4.2.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

11804
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@signature.digital/tools', name: '@signature.digital/tools',
version: '1.0.7', version: '1.0.8',
description: 'A TypeScript package providing utility interfaces and classes for digital contract management and integration, leveraging modular design and business context integration.' description: 'A TypeScript package providing utility interfaces and classes for digital contract management and integration, leveraging modular design and business context integration.'
} }

View File

@ -1 +1 @@
export * from '../ts_interfaces/index.js'; export * from '../dist_ts_interfaces/index.js';