fix(core): update

This commit is contained in:
Philipp Kunz 2024-04-18 20:21:15 +02:00
parent fb555b33be
commit bf6bda88e5
4 changed files with 1130 additions and 2336 deletions

View File

@ -119,6 +119,6 @@ jobs:
run: | run: |
npmci node install stable npmci node install stable
npmci npm install npmci npm install
pnpm install -g @gitzone/tsdoc pnpm install -g @git.zone/tsdoc
npmci command tsdoc npmci command tsdoc
continue-on-error: true continue-on-error: true

View File

@ -7,7 +7,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)", "build": "(tsbuild --web --allowimplicitany --skiplibcheck && tsbundle --from ./ts/index.ts --to dist_bundle/bundle.js)",
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"repository": { "repository": {
@ -21,29 +21,29 @@
}, },
"homepage": "https://gitlab.com/pushrocks/smartsocket#README", "homepage": "https://gitlab.com/pushrocks/smartsocket#README",
"dependencies": { "dependencies": {
"@api.global/typedrequest-interfaces": "^3.0.1", "@api.global/typedrequest-interfaces": "^3.0.18",
"@api.global/typedserver": "^3.0.4", "@api.global/typedserver": "^3.0.27",
"@push.rocks/isohash": "^2.0.0", "@push.rocks/isohash": "^2.0.0",
"@push.rocks/isounique": "^1.0.5", "@push.rocks/isounique": "^1.0.5",
"@push.rocks/lik": "^6.0.5", "@push.rocks/lik": "^6.0.14",
"@push.rocks/smartdelay": "^3.0.5", "@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartenv": "^5.0.5", "@push.rocks/smartenv": "^5.0.12",
"@push.rocks/smartjson": "^5.0.10", "@push.rocks/smartjson": "^5.0.19",
"@push.rocks/smartlog": "^3.0.3", "@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3", "@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.6", "@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smarttime": "^4.0.5", "@push.rocks/smarttime": "^4.0.6",
"engine.io": "6.5.2", "engine.io": "6.5.4",
"socket.io": "4.7.2", "socket.io": "4.7.5",
"socket.io-client": "4.7.2" "socket.io-client": "4.7.5"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.66", "@git.zone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8", "@git.zone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44", "@git.zone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77", "@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15", "@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.6.0" "@types/node": "^20.12.7"
}, },
"private": false, "private": false,
"files": [ "files": [

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartsocket', name: '@push.rocks/smartsocket',
version: '2.0.24', version: '2.0.25',
description: 'easy and secure websocket communication' description: 'Provides easy and secure websocket communication mechanisms, including server and client implementation, function call routing, connection management, and tagging.'
} }