fix(smartsystem): Add typings entry and normalize package description; sync commitinfo

This commit is contained in:
2025-08-29 13:29:47 +00:00
parent 28407cc658
commit e4563320bd
3 changed files with 10 additions and 3 deletions

View File

@@ -1,5 +1,12 @@
# Changelog
## 2025-08-29 - 3.0.6 - fix(smartsystem)
Add typings entry and normalize package description; sync commitinfo
- Add "typings": "dist_ts/index.d.ts" to package.json to expose TypeScript declaration file.
- Normalize package description wording (replace contraction "it's" with "it is") for consistency and clarity.
- Update ts/00_commitinfo_data.ts description to match the package.json description.
## 2025-08-29 - 3.0.5 - fix(metadata)
Clarify package/module description by expanding contraction

View File

@@ -1,7 +1,7 @@
{
"name": "@push.rocks/smartsystem",
"version": "3.0.5",
"description": "A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.",
"description": "A TypeScript library for interacting with the system it is running on, including environment, network, and hardware information.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartsystem',
version: '3.0.5',
description: 'A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.'
version: '3.0.6',
description: 'A TypeScript library for interacting with the system it is running on, including environment, network, and hardware information.'
}