Compare commits

...

2 Commits

Author SHA1 Message Date
ea895024c0 v2.3.5 2025-11-16 15:36:12 +00:00
078ccdf1c3 fix(dependencies): bump dependency versions in package.json 2025-11-16 15:36:12 +00:00
4 changed files with 2730 additions and 1252 deletions

View File

@@ -1,5 +1,18 @@
# Changelog
## 2025-11-16 - 2.3.5 - fix(dependencies)
bump dependency versions in package.json
- Updated devDependencies:
- - @git.zone/tsbuild: ^2.6.4 -> ^2.7.1
- - @git.zone/tsbundle: ^2.4.0 -> ^2.5.1
- - @git.zone/tstest: ^2.3.1 -> ^2.7.0
- Updated dependencies:
- - @push.rocks/smartjson: ^5.0.20 -> ^5.2.0
- - @push.rocks/smartrouter: ^1.3.2 -> ^1.3.3
- - @push.rocks/smartstate: ^2.0.20 -> ^2.0.27
- - @push.rocks/smartstring: ^4.0.15 -> ^4.1.0
## 2025-11-16 - 2.3.4 - fix(domtools)
Prevent race conditions during DomTools initialization and improve runOnce error handling

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.3.4",
"version": "2.3.5",
"private": false,
"description": "A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.",
"main": "dist_ts/index.js",
@@ -15,9 +15,9 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.6.4",
"@git.zone/tsbundle": "^2.4.0",
"@git.zone/tstest": "^2.3.1",
"@git.zone/tsbuild": "^2.7.1",
"@git.zone/tsbundle": "^2.5.1",
"@git.zone/tstest": "^2.7.0",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^22.12.0"
},
@@ -26,13 +26,13 @@
"@design.estate/dees-comms": "^1.0.27",
"@push.rocks/lik": "^6.2.2",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartjson": "^5.0.20",
"@push.rocks/smartjson": "^5.2.0",
"@push.rocks/smartmarkdown": "^3.0.3",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrouter": "^1.3.2",
"@push.rocks/smartrouter": "^1.3.3",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smartstate": "^2.0.20",
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smartstate": "^2.0.27",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smarturl": "^3.1.0",
"@push.rocks/webrequest": "^3.0.37",
"@push.rocks/websetup": "^3.0.19",

3951
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-domtools',
version: '2.3.4',
version: '2.3.5',
description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
}