fix(build): Upgrade build/test tooling and runtime deps; enable verbose tests

This commit is contained in:
2025-12-04 23:08:05 +00:00
parent 4649af7ab0
commit 1de7879e13
4 changed files with 5663 additions and 2594 deletions

21
changelog.md Normal file
View File

@@ -0,0 +1,21 @@
# Changelog
## 2025-12-04 - 1.0.28 - fix(build)
Upgrade build/test tooling and runtime deps; enable verbose tests
- Change test script to run tstest with --verbose instead of --web
- Upgrade devDependencies: @git.zone/tsbuild -> ^3.1.2, @git.zone/tsbundle -> ^2.6.3, @git.zone/tsrun -> ^2.0.0, @git.zone/tstest -> ^3.1.3, @push.rocks/tapbundle -> ^6.0.3, @types/node -> ^24.10.1
- Bump runtime dependencies: @api.global/typedrequest -> ^3.2.2, broadcast-channel -> ^7.2.0
- No source code changes outside package.json
## 2024-05-25 - 1.0.27 - maintenance (1.0.2 → 1.0.27)
Consolidated maintenance releases covering many small patches, core fixes, and version bumps between 2020-10-06 and 2024-05-25.
- Aggregated numerous "fix(core): update" changes applied across multiple patch releases.
- Many releases were version bumps or had only minimal/internal changes with no user-facing features.
- No breaking API changes recorded in these patch releases.
## 2024-04-20 - 1.0.24 - docs
Update documentation.
- Updated project documentation.

View File

@@ -9,22 +9,22 @@
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"test": "(tstest test/ --verbose)",
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.12"
"@git.zone/tsbuild": "^3.1.2",
"@git.zone/tsbundle": "^2.6.3",
"@git.zone/tsrun": "^2.0.0",
"@git.zone/tstest": "^3.1.3",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^24.10.1"
},
"dependencies": {
"@api.global/typedrequest": "^3.0.25",
"@api.global/typedrequest": "^3.2.2",
"@api.global/typedrequest-interfaces": "^3.0.19",
"@push.rocks/smartdelay": "^3.0.5",
"broadcast-channel": "^7.0.0"
"broadcast-channel": "^7.2.0"
},
"files": [
"ts/**/*",

8214
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@design.estate/dees-comms',
version: '1.0.27',
version: '1.0.28',
description: 'A communications module for enabling DOM-based messaging and synchronization across browser tabs and workers.'
}