4 Commits

Author SHA1 Message Date
c01c1904cf 1.0.9
Some checks failed
Default (tags) / security (push) Failing after 16s
Default (tags) / test (push) Failing after 14s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-12-18 21:54:35 +01:00
7bb1b22ea6 fix(ts_interfaces): Resolved missing exports in plugins.ts 2024-12-18 21:54:35 +01:00
5d275dd9d5 1.0.8
Some checks failed
Default (tags) / security (push) Failing after 15s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-12-18 20:39:44 +01:00
871ed4fc91 fix(core): Fixed export paths in package configuration 2024-12-18 20:39:44 +01:00
6 changed files with 7893 additions and 3953 deletions

View File

@ -1,5 +1,16 @@
# Changelog # Changelog
## 2024-12-18 - 1.0.9 - fix(ts_interfaces)
Resolved missing exports in plugins.ts
- Added export statements in ts_interfaces/plugins.ts to resolve module issues.
## 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

@ -1,10 +1,12 @@
{ {
"name": "@signature.digital/tools", "name": "@signature.digital/tools",
"version": "1.0.7", "version": "1.0.9",
"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",

11788
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.9',
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';

5
ts_interfaces/plugins.ts Normal file
View File

@ -0,0 +1,5 @@
import * as tsclass from '@tsclass/tsclass';
export {
tsclass
}