From d9989c903c1a9b4085abb79c819139391a79b8bd Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 18 Dec 2024 20:28:10 +0100 Subject: [PATCH] fix(core): Corrected package and npm extra configuration to ensure consistent naming. --- changelog.md | 16 ++++++++++++++++ npmextra.json | 4 ++-- package.json | 2 +- readme.hints.md | 0 ts/00_commitinfo_data.ts | 6 +++--- 5 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 changelog.md create mode 100644 readme.hints.md diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..9ed8047 --- /dev/null +++ b/changelog.md @@ -0,0 +1,16 @@ +# Changelog + +## 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 diff --git a/npmextra.json b/npmextra.json index c0fc571..601c969 100644 --- a/npmextra.json +++ b/npmextra.json @@ -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" } diff --git a/package.json b/package.json index 3f32884..4320f32 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@signature.digital/portablecontract", + "name": "@signature.digital/tools", "version": "1.0.4", "private": false, "description": "a package that defines standard tools for working with contracts.", diff --git a/readme.hints.md b/readme.hints.md new file mode 100644 index 0000000..e69de29 diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index b89877d..11725d7 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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.4', + name: '@signature.digital/tools', + version: '1.0.5', description: 'a package that defines standard tools for working with contracts.' }