fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-19 01:01:29 +02:00
parent 5e4878e492
commit fd7aadaf79
4 changed files with 603 additions and 1436 deletions

View File

@ -7,7 +7,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "npm run build && tstest test/", "test": "npm run build && tstest test/",
"build": "tsbuild --web --allowimplicitany && tsbundle --from ./ts_web/index.ts --to ./dist_ts_web/bundle.js", "build": "tsbuild --web --allowimplicitany --skiplibcheck && tsbundle --from ./ts_web/index.ts --to ./dist_ts_web/bundle.js",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"repository": { "repository": {
@ -49,44 +49,44 @@
], ],
"homepage": "https://github.com/pushrocks/easyserve", "homepage": "https://github.com/pushrocks/easyserve",
"dependencies": { "dependencies": {
"@api.global/typedrequest": "^3.0.18", "@api.global/typedrequest": "^3.0.21",
"@api.global/typedrequest-interfaces": "^3.0.18", "@api.global/typedrequest-interfaces": "^3.0.18",
"@api.global/typedsocket": "^3.0.0", "@api.global/typedsocket": "^3.0.1",
"@push.rocks/lik": "^6.0.14", "@push.rocks/lik": "^6.0.15",
"@push.rocks/smartchok": "^1.0.33", "@push.rocks/smartchok": "^1.0.33",
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.12", "@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartfeed": "^1.0.11", "@push.rocks/smartfeed": "^1.0.11",
"@push.rocks/smartfile": "^11.0.4", "@push.rocks/smartfile": "^11.0.14",
"@push.rocks/smartjson": "^5.0.14", "@push.rocks/smartjson": "^5.0.19",
"@push.rocks/smartlog": "^3.0.3", "@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartlog-destination-devtools": "^1.0.10", "@push.rocks/smartlog-destination-devtools": "^1.0.10",
"@push.rocks/smartmanifest": "^2.0.2", "@push.rocks/smartmanifest": "^2.0.2",
"@push.rocks/smartmime": "^1.0.5", "@push.rocks/smartmime": "^1.0.5",
"@push.rocks/smartopen": "^2.0.0", "@push.rocks/smartopen": "^2.0.0",
"@push.rocks/smartpath": "^5.0.11", "@push.rocks/smartpath": "^5.0.14",
"@push.rocks/smartpromise": "^4.0.2", "@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartrequest": "^2.0.21", "@push.rocks/smartrequest": "^2.0.22",
"@push.rocks/smartrx": "^3.0.7", "@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartsitemap": "^2.0.3", "@push.rocks/smartsitemap": "^2.0.3",
"@push.rocks/smartstream": "^3.0.33", "@push.rocks/smartstream": "^3.0.34",
"@push.rocks/smarttime": "^4.0.6", "@push.rocks/smarttime": "^4.0.6",
"@push.rocks/webstore": "^2.0.13", "@push.rocks/webstore": "^2.0.14",
"@tsclass/tsclass": "^4.0.52", "@tsclass/tsclass": "^4.0.54",
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"body-parser": "^1.20.2", "body-parser": "^1.20.2",
"cors": "^2.8.5", "cors": "^2.8.5",
"express": "^4.18.3", "express": "^4.19.2",
"express-force-ssl": "^0.3.2", "express-force-ssl": "^0.3.2",
"lit": "^3.1.2" "lit": "^3.1.3"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.72", "@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15", "@git.zone/tsbundle": "^2.0.15",
"@git.zone/tsrun": "^1.2.44", "@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.86", "@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.11.24" "@types/node": "^20.12.7"
}, },
"private": false, "private": false,
"browserslist": [ "browserslist": [

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@api.global/typedserver', name: '@api.global/typedserver',
version: '3.0.27', version: '3.0.28',
description: 'easy serving of static files' description: 'A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.'
} }

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@api.global/typedserver', name: '@api.global/typedserver',
version: '3.0.27', version: '3.0.28',
description: 'easy serving of static files' description: 'A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.'
} }