6 Commits

5 changed files with 29 additions and 7 deletions

View File

@@ -1,5 +1,27 @@
# 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
- Replaced "it's" with "it is" in the package/module description to improve clarity (files updated: npmextra.json, ts/00_commitinfo_data.ts).
- Documentation/metadata-only change; no runtime or API changes.
- Bump patch version to 3.0.5.
## 2025-08-29 - 3.0.4 - fix(smartsystem)
Bump version to 3.0.4
- Patch release: increment package version to 3.0.4
- No functional code changes detected in source files
- Tests are present but contain placeholder implementations
- Dependencies are pinned as wildcard '*' and were not updated
## 2025-08-29 - 3.0.3 - fix(readme)
Update README: expand documentation, add installation, usage examples, API overview, and advanced guides

View File

@@ -9,7 +9,7 @@
"githost": "code.foss.global",
"gitscope": "push.rocks",
"gitrepo": "smartsystem",
"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.",
"npmPackagename": "@push.rocks/smartsystem",
"license": "MIT",
"keywords": [

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@push.rocks/smartsystem",
"version": "3.0.3",
"version": "3.0.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@push.rocks/smartsystem",
"version": "3.0.3",
"version": "3.0.6",
"license": "MIT",
"dependencies": {
"@push.rocks/lik": "^6.0.0",

View File

@@ -1,7 +1,7 @@
{
"name": "@push.rocks/smartsystem",
"version": "3.0.3",
"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.",
"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.3',
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.'
}