feat(serviceworker): Add real-time service worker push updates and DeesComms integration (metrics, events, resource caching)

This commit is contained in:
2025-12-04 16:25:51 +00:00
parent 951a48cf88
commit 299e3ac33f
10 changed files with 438 additions and 40 deletions

View File

@@ -3,6 +3,9 @@ import { LitElement, html, css } from 'lit';
import type { CSSResult, TemplateResult } from 'lit';
import { customElement, property, state } from 'lit/decorators.js';
// DeesComms for push communication
import * as deesComms from '@design.estate/dees-comms';
export {
LitElement,
html,
@@ -10,6 +13,7 @@ export {
customElement,
property,
state,
deesComms,
};
export type { CSSResult, TemplateResult };