fix(core): update

This commit is contained in:
Philipp Kunz 2023-08-04 16:22:39 +02:00
parent 0edc903900
commit 4f0066b5ca
7 changed files with 1272 additions and 896 deletions

View File

@ -3,10 +3,10 @@
"projectType": "npm", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "apiglobal", "gitscope": "api.global",
"gitrepo": "typedsocket", "gitrepo": "typedsocket",
"description": "a typedrequest extension supporting websockets", "description": "a typedrequest extension supporting websockets",
"npmPackagename": "@apiglobal/typedsocket", "npmPackagename": "@api.global/typedsocket",
"license": "MIT", "license": "MIT",
"projectDomain": "api.global" "projectDomain": "api.global"
} }

View File

@ -1,5 +1,5 @@
{ {
"name": "@apiglobal/typedsocket", "name": "@api.global/typedsocket",
"version": "2.0.24", "version": "2.0.24",
"private": false, "private": false,
"description": "a typedrequest extension supporting websockets", "description": "a typedrequest extension supporting websockets",
@ -14,22 +14,22 @@
"buildDocs": "tsdoc" "buildDocs": "tsdoc"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.63", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.6", "@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.39", "@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.74", "@gitzone/tstest": "^1.0.77",
"@pushrocks/smartenv": "^5.0.5", "@push.rocks/smartenv": "^5.0.5",
"@pushrocks/tapbundle": "^5.0.4", "@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^18.15.11" "@types/node": "^20.4.7"
}, },
"dependencies": { "dependencies": {
"@apiglobal/typedrequest": "^2.0.8", "@api.global/typedrequest": "^3.0.0",
"@apiglobal/typedrequest-interfaces": "2.0.1", "@api.global/typedrequest-interfaces": "^2.0.2",
"@pushrocks/isohash": "^2.0.0", "@push.rocks/isohash": "^2.0.0",
"@pushrocks/smartjson": "^5.0.5", "@push.rocks/smartjson": "^5.0.5",
"@pushrocks/smartsocket": "^2.0.18", "@push.rocks/smartsocket": "^2.0.20",
"@pushrocks/smartstring": "^4.0.2", "@push.rocks/smartstring": "^4.0.2",
"@pushrocks/smarturl": "^3.0.5" "@push.rocks/smarturl": "^3.0.5"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"
@ -46,4 +46,4 @@
"npmextra.json", "npmextra.json",
"readme.md" "readme.md"
] ]
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
import { tap, expect } from '@pushrocks/tapbundle'; import { tap, expect } from '@push.rocks/tapbundle';
import * as typedsocket from '../ts/index.js'; import * as typedsocket from '../ts/index.js';

View File

@ -1,4 +1,4 @@
import { expect, tap } from '@pushrocks/tapbundle'; import { expect, tap } from '@push.rocks/tapbundle';
import * as typedrequest from '@apiglobal/typedrequest'; import * as typedrequest from '@apiglobal/typedrequest';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces'; import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@apiglobal/typedsocket', name: '@api.global/typedsocket',
version: '2.0.24', version: '2.0.25',
description: 'a typedrequest extension supporting websockets' description: 'a typedrequest extension supporting websockets'
} }

View File

@ -5,10 +5,10 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
export { typedrequest, typedrequestInterfaces }; export { typedrequest, typedrequestInterfaces };
// @pushrocks scope // @pushrocks scope
import * as isohash from '@pushrocks/isohash'; import * as isohash from '@push.rocks/isohash';
import * as smartjson from '@pushrocks/smartjson'; import * as smartjson from '@push.rocks/smartjson';
import * as smartsocket from '@pushrocks/smartsocket'; import * as smartsocket from '@push.rocks/smartsocket';
import * as smartstring from '@pushrocks/smartstring'; import * as smartstring from '@push.rocks/smartstring';
import * as smarturl from '@pushrocks/smarturl'; import * as smarturl from '@push.rocks/smarturl';
export { isohash, smartjson, smartsocket, smartstring, smarturl }; export { isohash, smartjson, smartsocket, smartstring, smarturl };