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", "projectType": "npm",
"module": { "module": {
"githost": "gitlab.com", "githost": "gitlab.com",
"gitscope": "designestate", "gitscope": "design.estate",
"gitrepo": "dees-comms", "gitrepo": "dees-comms",
"shortDescription": "a comms module for communicating within the DOM", "shortDescription": "a comms module for communicating within the DOM",
"npmPackagename": "@designestate/dees-comms", "npmPackagename": "@design.estate/dees-comms",
"license": "MIT", "license": "MIT",
"projectDomain": "design.estate" "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", "version": "1.0.23",
"private": false, "private": false,
"description": "a comms module for communicating within the DOM", "description": "a comms module for communicating within the DOM",
@ -13,16 +13,17 @@
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)" "build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
}, },
"devDependencies": { "devDependencies": {
"@gitzone/tsbuild": "^2.1.63", "@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.4", "@gitzone/tsbundle": "^2.0.8",
"@gitzone/tstest": "^1.0.71", "@gitzone/tsrun": "^1.2.44",
"@pushrocks/tapbundle": "^5.0.3", "@gitzone/tstest": "^1.0.77",
"@types/node": "^17.0.35" "@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.8"
}, },
"dependencies": { "dependencies": {
"@apiglobal/typedrequest": "^2.0.3", "@api.global/typedrequest": "^3.0.1",
"@apiglobal/typedrequest-interfaces": "^1.0.15", "@api.global/typedrequest-interfaces": "^3.0.1",
"@pushrocks/smartdelay": "^2.0.13", "@push.rocks/smartdelay": "^3.0.5",
"broadcast-channel": "^3.7.0" "broadcast-channel": "^3.7.0"
}, },
"files": [ "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'; import * as deesComms from '../ts/index.js';
let deesCommsTest: deesComms.DeesComms; let deesCommsTest: deesComms.DeesComms;

View File

@ -2,7 +2,7 @@
* autocreated commitinfo by @pushrocks/commitinfo * autocreated commitinfo by @pushrocks/commitinfo
*/ */
export const commitinfo = { export const commitinfo = {
name: '@designestate/dees-comms', name: '@design.estate/dees-comms',
version: '1.0.23', version: '1.0.24',
description: 'a comms module for communicating within the DOM' 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'; import * as plugins from './dees-comms.plugins.js';
let BroadcastChannel = globalThis.BroadcastChannel; let BroadcastChannel = globalThis.BroadcastChannel;
@ -40,7 +39,7 @@ export class DeesComms {
*/ */
public createTypedRequest<T extends plugins.typedrequestInterfaces.ITypedRequest>( public createTypedRequest<T extends plugins.typedrequestInterfaces.ITypedRequest>(
methodName: T['method'] methodName: T['method']
): TypedRequest<T> { ): plugins.typedrequest.TypedRequest<T> {
const typedrequest = new plugins.typedrequest.TypedRequest(this.typedtarget, methodName); const typedrequest = new plugins.typedrequest.TypedRequest(this.typedtarget, methodName);
return typedrequest; return typedrequest;
} }

View File

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

View File

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