8 Commits

Author SHA1 Message Date
12eba17c7c 1.0.6
Some checks failed
Default (tags) / security (push) Failing after 15s
Default (tags) / test (push) Failing after 14s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-12-18 20:29:09 +01:00
033024951d fix(core): No code changes detected. 2024-12-18 20:29:09 +01:00
213c52fccc 1.0.5
Some checks failed
Default (tags) / security (push) Failing after 15s
Default (tags) / test (push) Failing after 13s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2024-12-18 20:28:10 +01:00
d9989c903c fix(core): Corrected package and npm extra configuration to ensure consistent naming. 2024-12-18 20:28:10 +01:00
aa7b37f797 1.0.4
Some checks failed
Default (tags) / security (push) Failing after 15s
Default (tags) / test (push) Failing after 14s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-28 13:36:28 +01:00
f7f4ce99ed fix(core): update 2023-11-28 13:36:28 +01:00
dcfa53e40c 1.0.3
Some checks failed
Default (tags) / security (push) Failing after 17s
Default (tags) / test (push) Failing after 15s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2023-11-27 18:10:06 +01:00
38fefa42c6 fix(core): update 2023-11-27 18:10:05 +01:00
6 changed files with 28 additions and 10 deletions

20
changelog.md Normal file
View File

@ -0,0 +1,20 @@
# Changelog
## 2024-12-18 - 1.0.6 - fix(core)
No code changes detected.
## 2024-12-18 - 1.0.5 - fix(core)
Corrected package and npm extra configuration to ensure consistent naming.
- Updated 'name' field in package.json from '@signature.digital/portablecontract' to '@signature.digital/tools'.
- Updated 'gitrepo' in npmextra.json from 'portablecontract' to 'tools'.
- Updated 'npmPackagename' in npmextra.json from '@signature.digital/portablecontract' to '@signature.digital/tools'.
## 2023-11-22 to 2023-11-28 - 1.0.1 to 1.0.4 - core updates
Fixes and updates in the core component.
- Updated core module to enhance performance and fix minor bugs in version 1.0.1
- Subsequent updates to core module for improved stability in version 1.0.2
- Applied additional fixes and improvements in version 1.0.3
- Finalized core updates in version 1.0.4

View File

@ -4,9 +4,9 @@
"module": {
"githost": "gitlab.com",
"gitscope": "signature.digital",
"gitrepo": "portablecontract",
"gitrepo": "tools",
"description": "a package that defines standard tools for working with contracts.",
"npmPackagename": "@signature.digital/portablecontract",
"npmPackagename": "@signature.digital/tools",
"license": "MIT",
"projectDomain": "signature.digital"
}

View File

@ -1,6 +1,6 @@
{
"name": "@signature.digital/portablecontract",
"version": "1.0.2",
"name": "@signature.digital/tools",
"version": "1.0.6",
"private": false,
"description": "a package that defines standard tools for working with contracts.",
"main": "dist_ts/index.js",

0
readme.hints.md Normal file
View File

View File

@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@signature.digital/portablecontract',
version: '1.0.2',
name: '@signature.digital/tools',
version: '1.0.6',
description: 'a package that defines standard tools for working with contracts.'
}

View File

@ -1,3 +1 @@
import * as plugins from './portablecontract.plugins.js';
export let demoExport = 'Hi there! :) This is an exported string';
export * from './interfaces/index.js';