Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
9cf33ab850 | |||
342f14ac59 | |||
376ce667e3 | |||
e4563320bd | |||
28407cc658 | |||
2a6bfc7a9d |
20
changelog.md
20
changelog.md
@@ -1,5 +1,25 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-08-29 - 3.0.7 - fix(build)
|
||||||
|
Switch build script to run tsbuild on tsfolders instead of using the --web flag
|
||||||
|
|
||||||
|
- Updated package.json scripts.build from "(tsbuild --web --allowimplicitany)" to "(tsbuild tsfolders --allowimplicitany)"
|
||||||
|
- This is a build-script change only; no source API changes were made
|
||||||
|
|
||||||
|
## 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)
|
## 2025-08-29 - 3.0.4 - fix(smartsystem)
|
||||||
Bump version to 3.0.4
|
Bump version to 3.0.4
|
||||||
|
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
"githost": "code.foss.global",
|
"githost": "code.foss.global",
|
||||||
"gitscope": "push.rocks",
|
"gitscope": "push.rocks",
|
||||||
"gitrepo": "smartsystem",
|
"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",
|
"npmPackagename": "@push.rocks/smartsystem",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartsystem",
|
"name": "@push.rocks/smartsystem",
|
||||||
"version": "3.0.4",
|
"version": "3.0.7",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@push.rocks/smartsystem",
|
"name": "@push.rocks/smartsystem",
|
||||||
"version": "3.0.4",
|
"version": "3.0.7",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@push.rocks/lik": "^6.0.0",
|
"@push.rocks/lik": "^6.0.0",
|
||||||
|
@@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartsystem",
|
"name": "@push.rocks/smartsystem",
|
||||||
"version": "3.0.4",
|
"version": "3.0.7",
|
||||||
"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",
|
"main": "dist_ts/index.js",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
"test": "(tstest test/ --verbose --logfile --timeout 60)",
|
||||||
"build": "(tsbuild --web --allowimplicitany)",
|
"build": "(tsbuild tsfolders --allowimplicitany)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartsystem',
|
name: '@push.rocks/smartsystem',
|
||||||
version: '3.0.4',
|
version: '3.0.7',
|
||||||
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.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user