fix(core): Fixed export paths in package configuration
This commit is contained in:
parent
d53bc96947
commit
871ed4fc91
@ -1,5 +1,11 @@
|
||||
# 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)
|
||||
Corrected misalignment in file structure and package metadata.
|
||||
|
||||
|
20
package.json
20
package.json
@ -3,8 +3,10 @@
|
||||
"version": "1.0.7",
|
||||
"private": false,
|
||||
"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",
|
||||
"typings": "dist_ts/index.d.ts",
|
||||
"exports": {
|
||||
".": "./ts/index.js",
|
||||
"./interfaces": "./dist_ts_interfaces/index.js"
|
||||
},
|
||||
"type": "module",
|
||||
"author": "Task Venture Capital GmbH",
|
||||
"license": "MIT",
|
||||
@ -14,15 +16,15 @@
|
||||
"buildDocs": "(tsdoc)"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^2.1.25",
|
||||
"@git.zone/tsbundle": "^2.0.5",
|
||||
"@git.zone/tsrun": "^1.2.46",
|
||||
"@git.zone/tstest": "^1.0.44",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"@types/node": "^20.8.7"
|
||||
"@git.zone/tsbuild": "^2.2.0",
|
||||
"@git.zone/tsbundle": "^2.1.0",
|
||||
"@git.zone/tsrun": "^1.3.3",
|
||||
"@git.zone/tstest": "^1.0.90",
|
||||
"@push.rocks/tapbundle": "^5.5.3",
|
||||
"@types/node": "^22.10.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tsclass/tsclass": "^4.0.46"
|
||||
"@tsclass/tsclass": "^4.2.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
11792
pnpm-lock.yaml
generated
11792
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
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.'
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
export * from '../ts_interfaces/index.js';
|
||||
export * from '../dist_ts_interfaces/index.js';
|
Loading…
Reference in New Issue
Block a user