2 Commits

Author SHA1 Message Date
e7785cc31b 1.0.13 2022-01-24 05:11:56 +01:00
63610b66bc fix(core): update 2022-01-24 05:11:55 +01:00
4 changed files with 3 additions and 13 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@designestate/dees-comms",
"version": "1.0.12",
"version": "1.0.13",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@designestate/dees-comms",
"version": "1.0.12",
"version": "1.0.13",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest": "^1.0.65",

View File

@@ -1,6 +1,6 @@
{
"name": "@designestate/dees-comms",
"version": "1.0.12",
"version": "1.0.13",
"private": false,
"description": "a comms module for communicating within the DOM",
"main": "dist_ts/index.js",

View File

@@ -1,11 +1,6 @@
import { TypedRequest } from '@apiglobal/typedrequest';
import * as plugins from './dees-comms.plugins';
let BroadcastChannel = globalThis.BroadcastChannel;
if (!BroadcastChannel) {
BroadcastChannel = plugins.BroadCastChannelPolyfill as any;
}
/**
* a comm class for client side communication between workers and tabs.
*/

View File

@@ -3,8 +3,3 @@ import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
import * as typedrequest from '@apiglobal/typedrequest';
export { typedrequestInterfaces, typedrequest };
// thirdparty scope
import { BroadcastChannel as BroadCastChannelPolyfill } from 'broadcast-channel';
export { BroadCastChannelPolyfill };