refactor: Convert the build scripts to TypeScript and group them (#2696)

- Closes: #2695
This commit is contained in:
Dermot Duffy
2026-08-21 14:18:37 -07:00
committed by GitHub
parent 1e03e6a3d9
commit 2d7c86c93c
16 changed files with 137 additions and 93 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* The files a Home Assistant dashboard resource may list.
*
* Everything else the build emits is hashed, so this is the one name that has to
* stay put across releases.
*/
export const PUBLIC_ENTRY = 'advanced-camera-card.js';
/**
* Both names a dashboard resource can name: the current one, and the one the
* card shipped under previously, kept so an existing resource keeps working.
*/
export const PUBLIC_ENTRIES = [PUBLIC_ENTRY, 'frigate-hass-card.js'];