Compare commits

..

2 Commits

8 changed files with 1592 additions and 688 deletions

View File

@@ -1,5 +1,14 @@
# Changelog
## 2026-03-05 - 2.3.9 - fix(deps)
bump dependency and devDependency versions, update lik import paths, add tsbundle config, export test start, and tidy readme install snippet
- Bumped several devDependencies and dependencies (e.g. @git.zone/tsbuild, @git.zone/tsbundle, @git.zone/tstest, @api.global/typedrequest, @push.rocks/* packages including smartjson and webrequest).
- Updated @push.rocks/lik import paths to use classes.* modules (classes.objectmap/stringmap/fastmap).
- Added @git.zone/tsbundle entry to npmextra.json to produce an esbuild bundle (dist_bundle/bundle.js).
- Changed test bootstrap to export default tap.start() to align with test runner usage.
- Fixed README installation snippet formatting (combined npm/pnpm examples).
## 2026-01-27 - 2.3.8 - fix(domtools)
remove default 'loading...' meta title in WebSetup and use an empty string as the default

View File

@@ -37,6 +37,17 @@
"@git.zone/tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
},
"@git.zone/tsbundle": {
"bundles": [
{
"from": "./ts/index.ts",
"to": "./dist_bundle/bundle.js",
"outputMode": "bundle",
"bundler": "esbuild",
"production": true
}
]
},
"@ship.zone/szci": {
"npmGlobalTools": []
}

View File

@@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-domtools",
"version": "2.3.8",
"version": "2.3.9",
"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,29 +15,29 @@
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.0.2",
"@git.zone/tsbundle": "^2.6.3",
"@git.zone/tstest": "^3.1.4",
"@git.zone/tsbuild": "^4.1.3",
"@git.zone/tsbundle": "^2.9.0",
"@git.zone/tstest": "^3.2.0",
"@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^25.0.3"
"@types/node": "^25.3.3"
},
"dependencies": {
"@api.global/typedrequest": "^3.2.5",
"@api.global/typedrequest": "^3.3.0",
"@design.estate/dees-comms": "^1.0.30",
"@push.rocks/lik": "^6.2.2",
"@push.rocks/lik": "^6.3.1",
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartjson": "^5.2.0",
"@push.rocks/smartjson": "^6.0.0",
"@push.rocks/smartmarkdown": "^3.0.3",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrouter": "^1.3.3",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smartstate": "^2.0.27",
"@push.rocks/smartstate": "^2.2.1",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smarturl": "^3.1.0",
"@push.rocks/webrequest": "^3.0.37",
"@push.rocks/webrequest": "^4.0.5",
"@push.rocks/websetup": "^3.0.19",
"@push.rocks/webstore": "^2.0.20",
"@tempfix/lenis": "^1.3.17",
"@tempfix/lenis": "^1.3.20",
"lit": "^3.3.2",
"sweet-scroll": "^4.0.0"
},

2222
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,11 +20,7 @@ Modern web development made elegant. `@design.estate/dees-domtools` provides a p
```bash
npm install @design.estate/dees-domtools
```
Or with pnpm:
```bash
# or
pnpm add @design.estate/dees-domtools
```

View File

@@ -6,4 +6,4 @@ tap.test('first test', async () => {
expect(domtoolsInstance).toBeInstanceOf(domtools.DomTools);
});
tap.start();
export default tap.start();

View File

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

View File

@@ -23,9 +23,9 @@ import * as websetup from '@push.rocks/websetup';
import * as webstore from '@push.rocks/webstore';
// subscope lik
import { ObjectMap } from '@push.rocks/lik/dist_ts/lik.objectmap.js';
import { Stringmap } from '@push.rocks/lik/dist_ts/lik.stringmap.js';
import { FastMap } from '@push.rocks/lik/dist_ts/lik.fastmap.js';
import { ObjectMap } from '@push.rocks/lik/dist_ts/classes.objectmap.js';
import { Stringmap } from '@push.rocks/lik/dist_ts/classes.stringmap.js';
import { FastMap } from '@push.rocks/lik/dist_ts/classes.fastmap.js';
const lik = {
ObjectMap,
Stringmap,