fix(core): update

This commit is contained in:
Philipp Kunz 2023-08-08 01:06:23 +02:00
parent 9d895913eb
commit ebeedc6200
9 changed files with 4690 additions and 9846 deletions

View File

@ -3,10 +3,10 @@
"projectType": "npm",
"module": {
"githost": "gitlab.com",
"gitscope": "designestate",
"gitscope": "design.estate",
"gitrepo": "dees-comms",
"shortDescription": "a comms module for communicating within the DOM",
"npmPackagename": "@designestate/dees-comms",
"npmPackagename": "@design.estate/dees-comms",
"license": "MIT",
"projectDomain": "design.estate"
}

9826
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
{
"name": "@designestate/dees-comms",
"name": "@design.estate/dees-comms",
"version": "1.0.23",
"private": false,
"description": "a comms module for communicating within the DOM",
@ -13,16 +13,17 @@
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.4",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.35"
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.8"
},
"dependencies": {
"@apiglobal/typedrequest": "^2.0.3",
"@apiglobal/typedrequest-interfaces": "^1.0.15",
"@pushrocks/smartdelay": "^2.0.13",
"@api.global/typedrequest": "^3.0.1",
"@api.global/typedrequest-interfaces": "^3.0.1",
"@push.rocks/smartdelay": "^3.0.5",
"broadcast-channel": "^3.7.0"
},
"files": [

4668
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@designestate/dees-comms',
version: '1.0.23',
name: '@design.estate/dees-comms',
version: '1.0.24',
description: 'a comms module for communicating within the DOM'
}

View File

@ -1,4 +1,3 @@
import { TypedRequest } from '@apiglobal/typedrequest';
import * as plugins from './dees-comms.plugins.js';
let BroadcastChannel = globalThis.BroadcastChannel;
@ -40,7 +39,7 @@ export class DeesComms {
*/
public createTypedRequest<T extends plugins.typedrequestInterfaces.ITypedRequest>(
methodName: T['method']
): TypedRequest<T> {
): plugins.typedrequest.TypedRequest<T> {
const typedrequest = new plugins.typedrequest.TypedRequest(this.typedtarget, methodName);
return typedrequest;
}

View File

@ -1,7 +1,7 @@
// pushrocks scope
import * as smartdelay from '@pushrocks/smartdelay';
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequest from '@apiglobal/typedrequest';
import * as smartdelay from '@push.rocks/smartdelay';
import * as typedrequestInterfaces from '@api.global/typedrequest-interfaces';
import * as typedrequest from '@api.global/typedrequest';
export { smartdelay, typedrequestInterfaces, typedrequest };

View File

@ -4,6 +4,8 @@
"useDefineForClassFields": false,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "nodenext"
"moduleResolution": "nodenext",
"esModuleInterop": true,
"verbatimModuleSyntax": true,
}
}