diff --git a/changelog.md b/changelog.md index face0db..db0f787 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # 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 diff --git a/package.json b/package.json index 39d06b6..f9a39e7 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "type": "module", "scripts": { "test": "(tstest test/ --verbose --logfile --timeout 60)", - "build": "(tsbuild --web --allowimplicitany)", + "build": "(tsbuild tsfolders --allowimplicitany)", "buildDocs": "tsdoc" }, "repository": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 925444f..67c2285 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartsystem', - version: '3.0.6', + version: '3.0.7', description: 'A TypeScript library for interacting with the system it is running on, including environment, network, and hardware information.' }