fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-24 22:46:08 +01:00
parent 916052ef0b
commit 6e2855cf3c
6 changed files with 5586 additions and 13533 deletions

19089
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,27 +5,29 @@
"description": "a typedrequest extension supporting websockets",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
"build": "(tsbuild --web --allowimplicitany --skiplibcheck)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tsbundle": "^1.0.88",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^3.2.15",
"@types/node": "^17.0.10",
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsbundle": "^1.0.101",
"@gitzone/tstest": "^1.0.69",
"@pushrocks/smartenv": "^5.0.0",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.23",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
"@apiglobal/typedrequest": "^1.0.65",
"@apiglobal/typedrequest": "^2.0.0",
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/isohash": "^1.0.2",
"@pushrocks/smartsocket": "^1.2.22",
"@pushrocks/smartstring": "^3.0.24"
"@pushrocks/isohash": "^2.0.0",
"@pushrocks/smartsocket": "^2.0.4",
"@pushrocks/smartstring": "^4.0.2"
},
"browserslist": [
"last 1 chrome versions"

View File

@ -1,6 +1,6 @@
import { tap, expect } from '@pushrocks/tapbundle';
import * as typedsocket from '../ts/index';
import * as typedsocket from '../ts/index.js';
tap.test('should create a client', async () => {
console.log('Browser test') // TODO: implement browser tests

View File

@ -2,7 +2,7 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as typedrequest from '@apiglobal/typedrequest';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedsocket from '../ts/index';
import * as typedsocket from '../ts/index.js';
interface IRequest_Client_Server extends typedrequestInterfaces.implementsTR<
typedrequestInterfaces.ITypedRequest,

View File

@ -1 +1 @@
export * from './typedsocket.classes.typedsocket';
export * from './typedsocket.classes.typedsocket.js';

View File

@ -1,4 +1,4 @@
import * as plugins from './typedsocket.plugins';
import * as plugins from './typedsocket.plugins.js';
const publicRoleName = 'publicRoleName';
const publicRolePass = 'publicRolePass';