Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
12eba17c7c | |||
033024951d | |||
213c52fccc | |||
d9989c903c | |||
aa7b37f797 | |||
f7f4ce99ed | |||
dcfa53e40c | |||
38fefa42c6 |
20
changelog.md
Normal file
20
changelog.md
Normal 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
|
@ -4,9 +4,9 @@
|
|||||||
"module": {
|
"module": {
|
||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "signature.digital",
|
"gitscope": "signature.digital",
|
||||||
"gitrepo": "portablecontract",
|
"gitrepo": "tools",
|
||||||
"description": "a package that defines standard tools for working with contracts.",
|
"description": "a package that defines standard tools for working with contracts.",
|
||||||
"npmPackagename": "@signature.digital/portablecontract",
|
"npmPackagename": "@signature.digital/tools",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"projectDomain": "signature.digital"
|
"projectDomain": "signature.digital"
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@signature.digital/portablecontract",
|
"name": "@signature.digital/tools",
|
||||||
"version": "1.0.2",
|
"version": "1.0.6",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a package that defines standard tools for working with contracts.",
|
"description": "a package that defines standard tools for working with contracts.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
0
readme.hints.md
Normal file
0
readme.hints.md
Normal file
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* autocreated commitinfo by @pushrocks/commitinfo
|
* autocreated commitinfo by @push.rocks/commitinfo
|
||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@signature.digital/portablecontract',
|
name: '@signature.digital/tools',
|
||||||
version: '1.0.2',
|
version: '1.0.6',
|
||||||
description: 'a package that defines standard tools for working with contracts.'
|
description: 'a package that defines standard tools for working with contracts.'
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1 @@
|
|||||||
import * as plugins from './portablecontract.plugins.js';
|
export * from './interfaces/index.js';
|
||||||
|
|
||||||
export let demoExport = 'Hi there! :) This is an exported string';
|
|
Reference in New Issue
Block a user