@sailfish-ai/recorder 1.7.20 → 1.7.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/constants.js CHANGED
@@ -10,3 +10,63 @@ export const DomContentSource = {
10
10
  };
11
11
  export const Loading = "loading";
12
12
  export const Complete = "complete";
13
+ export const STATIC_EXTENSIONS = [
14
+ // Code & Styles
15
+ ".js",
16
+ ".mjs",
17
+ ".cjs",
18
+ ".ts",
19
+ ".css",
20
+ ".scss",
21
+ ".sass",
22
+ ".less",
23
+ ".styl",
24
+ ".stylus",
25
+ // Images
26
+ ".png",
27
+ ".jpg",
28
+ ".jpeg",
29
+ ".gif",
30
+ ".svg",
31
+ ".webp",
32
+ ".avif",
33
+ ".bmp",
34
+ ".ico",
35
+ ".tiff",
36
+ ".tif",
37
+ ".heic",
38
+ // Fonts
39
+ ".woff",
40
+ ".woff2",
41
+ ".ttf",
42
+ ".otf",
43
+ ".eot",
44
+ // Media
45
+ ".mp4",
46
+ ".webm",
47
+ ".ogv",
48
+ ".mp3",
49
+ ".wav",
50
+ ".flac",
51
+ // Documents & Data
52
+ ".pdf",
53
+ ".doc",
54
+ ".docx",
55
+ ".xls",
56
+ ".xlsx",
57
+ ".ppt",
58
+ ".pptx",
59
+ ".csv",
60
+ ".json",
61
+ ".xml",
62
+ ".txt",
63
+ // Archives & Maps
64
+ ".zip",
65
+ ".rar",
66
+ ".gz",
67
+ ".tar",
68
+ ".7z",
69
+ ".map",
70
+ // Web App Manifest
71
+ ".webmanifest",
72
+ ];