fix(build): Switch build script to run tsbuild on tsfolders instead of using the --web flag

This commit is contained in:
2025-08-29 13:30:33 +00:00
parent 376ce667e3
commit 342f14ac59
3 changed files with 8 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
# 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) ## 2025-08-29 - 3.0.6 - fix(smartsystem)
Add typings entry and normalize package description; sync commitinfo Add typings entry and normalize package description; sync commitinfo

View File

@@ -7,7 +7,7 @@
"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": {

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartsystem', 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.' description: 'A TypeScript library for interacting with the system it is running on, including environment, network, and hardware information.'
} }