c15t 0.0.1-rc.3

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.
Files changed (86) hide show
  1. package/.turbo/turbo-build.log +54 -0
  2. package/.turbo/turbo-fmt.log +6 -0
  3. package/.turbo/turbo-lint.log +288 -0
  4. package/.turbo/turbo-test.log +33 -0
  5. package/CHANGELOG.md +20 -0
  6. package/LICENSE.md +595 -0
  7. package/README.md +28 -0
  8. package/dist/index.cjs +118 -0
  9. package/dist/index.d.ts +27 -0
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +19 -0
  12. package/dist/libs/__tests__/tracking-blocker.test.cjs +269 -0
  13. package/dist/libs/__tests__/tracking-blocker.test.d.ts +2 -0
  14. package/dist/libs/__tests__/tracking-blocker.test.d.ts.map +1 -0
  15. package/dist/libs/__tests__/tracking-blocker.test.js +267 -0
  16. package/dist/libs/consent-utils.cjs +68 -0
  17. package/dist/libs/consent-utils.d.ts +49 -0
  18. package/dist/libs/consent-utils.d.ts.map +1 -0
  19. package/dist/libs/consent-utils.js +23 -0
  20. package/dist/libs/tracking-blocker.cjs +167 -0
  21. package/dist/libs/tracking-blocker.d.ts +33 -0
  22. package/dist/libs/tracking-blocker.d.ts.map +1 -0
  23. package/dist/libs/tracking-blocker.js +108 -0
  24. package/dist/libs/tracking-domains.cjs +188 -0
  25. package/dist/libs/tracking-domains.d.ts +7 -0
  26. package/dist/libs/tracking-domains.d.ts.map +1 -0
  27. package/dist/libs/tracking-domains.js +146 -0
  28. package/dist/store.cjs +248 -0
  29. package/dist/store.d.ts +58 -0
  30. package/dist/store.d.ts.map +1 -0
  31. package/dist/store.initial-state.cjs +105 -0
  32. package/dist/store.initial-state.d.ts +43 -0
  33. package/dist/store.initial-state.d.ts.map +1 -0
  34. package/dist/store.initial-state.js +66 -0
  35. package/dist/store.js +219 -0
  36. package/dist/store.type.cjs +22 -0
  37. package/dist/store.type.d.ts +159 -0
  38. package/dist/store.type.d.ts.map +1 -0
  39. package/dist/store.type.js +0 -0
  40. package/dist/translations/en.cjs +96 -0
  41. package/dist/translations/en.d.ts +3 -0
  42. package/dist/translations/en.d.ts.map +1 -0
  43. package/dist/translations/en.js +54 -0
  44. package/dist/translations/index.cjs +51 -0
  45. package/dist/translations/index.d.ts +3 -0
  46. package/dist/translations/index.d.ts.map +1 -0
  47. package/dist/translations/index.js +9 -0
  48. package/dist/types/callbacks.cjs +22 -0
  49. package/dist/types/callbacks.d.ts +146 -0
  50. package/dist/types/callbacks.d.ts.map +1 -0
  51. package/dist/types/callbacks.js +0 -0
  52. package/dist/types/compliance.cjs +22 -0
  53. package/dist/types/compliance.d.ts +196 -0
  54. package/dist/types/compliance.d.ts.map +1 -0
  55. package/dist/types/compliance.js +0 -0
  56. package/dist/types/gdpr.cjs +86 -0
  57. package/dist/types/gdpr.d.ts +168 -0
  58. package/dist/types/gdpr.d.ts.map +1 -0
  59. package/dist/types/gdpr.js +44 -0
  60. package/dist/types/index.cjs +44 -0
  61. package/dist/types/index.d.ts +141 -0
  62. package/dist/types/index.d.ts.map +1 -0
  63. package/dist/types/index.js +4 -0
  64. package/dist/types/translations.cjs +22 -0
  65. package/dist/types/translations.d.ts +52 -0
  66. package/dist/types/translations.d.ts.map +1 -0
  67. package/dist/types/translations.js +0 -0
  68. package/package.json +33 -0
  69. package/rslib.config.ts +28 -0
  70. package/src/index.ts +31 -0
  71. package/src/libs/__tests__/tracking-blocker.test.ts +271 -0
  72. package/src/libs/consent-utils.ts +70 -0
  73. package/src/libs/tracking-blocker.ts +202 -0
  74. package/src/libs/tracking-domains.ts +158 -0
  75. package/src/store.initial-state.ts +123 -0
  76. package/src/store.ts +450 -0
  77. package/src/store.type.ts +187 -0
  78. package/src/translations/en.ts +55 -0
  79. package/src/translations/index.ts +10 -0
  80. package/src/types/callbacks.ts +152 -0
  81. package/src/types/compliance.ts +205 -0
  82. package/src/types/gdpr.ts +217 -0
  83. package/src/types/index.ts +148 -0
  84. package/src/types/translations.ts +60 -0
  85. package/tsconfig.json +12 -0
  86. package/vitest.config.ts +15 -0
@@ -0,0 +1,54 @@
1
+
2
+ 
3
+ > c15t@0.0.1-rc.2 build /Users/christopherburns/glados/k/c15t/packages/core
4
+ > rslib build
5
+
6
+   Rslib v0.4.1
7
+ 
8
+ ready  Built in 0.30 s (esm)
9
+ ready  Built in 0.30 s (cjs)
10
+ start  Generating DTS... (esm)
11
+ start  Generating DTS... (cjs)
12
+ ready  DTS generated in 1.73 s (esm)
13
+ ready  DTS generated in 1.78 s (cjs)
14
+
15
+  File (cjs) Size Gzip 
16
+ dist/store.type.cjs 0.72 kB
17
+ dist/types/callbacks.cjs 0.72 kB
18
+ dist/types/compliance.cjs 0.72 kB
19
+ dist/types/translations.cjs 0.72 kB
20
+ dist/types/index.cjs 1.4 kB
21
+ dist/translations/index.cjs 1.5 kB
22
+ dist/libs/consent-utils.cjs 2.1 kB
23
+ dist/types/gdpr.cjs 2.7 kB
24
+ dist/store.initial-state.cjs 3.1 kB
25
+ dist/translations/en.cjs 3.1 kB
26
+ dist/index.cjs 3.9 kB
27
+ dist/libs/tracking-blocker.cjs 5.2 kB
28
+ dist/libs/tracking-domains.cjs 6.9 kB
29
+ dist/store.cjs 8.5 kB
30
+ dist/libs/__tests__/tracking-blocker.test.cjs 9.0 kB
31
+
32
+ Total: 50.3 kB (gzip: 0.00 kB)
33
+
34
+  -----
35
+
36
+  File (esm) Size Gzip 
37
+ dist/store.type.js 0.00 kB 0.02 kB
38
+ dist/types/callbacks.js 0.00 kB 0.02 kB
39
+ dist/types/compliance.js 0.00 kB 0.02 kB
40
+ dist/types/translations.js 0.00 kB 0.02 kB
41
+ dist/types/index.js 0.23 kB 0.15 kB
42
+ dist/translations/index.js 0.31 kB 0.21 kB
43
+ dist/libs/consent-utils.js 0.77 kB 0.32 kB
44
+ dist/index.js 1.2 kB 0.34 kB
45
+ dist/types/gdpr.js 1.4 kB 0.49 kB
46
+ dist/translations/en.js 1.8 kB 0.63 kB
47
+ dist/store.initial-state.js 1.9 kB 0.62 kB
48
+ dist/libs/tracking-blocker.js 3.6 kB 1.1 kB
49
+ dist/libs/tracking-domains.js 5.7 kB 1.1 kB
50
+ dist/store.js 7.6 kB 1.7 kB
51
+ dist/libs/__tests__/tracking-blocker.test.js 9.0 kB 1.4 kB
52
+
53
+ Total: 33.5 kB (gzip: 8.1 kB)
54
+
@@ -0,0 +1,6 @@
1
+
2
+ 
3
+ > c15t@0.0.1-rc.3 fmt /Users/christopherburns/glados/k/c15t/packages/core
4
+ > pnpm biome format --write .
5
+
6
+ Formatted 64 files in 45ms. Fixed 41 files.
@@ -0,0 +1,288 @@
1
+
2
+ 
3
+ > c15t@0.0.1-rc.3 lint /Users/christopherburns/glados/k/c15t/packages/core
4
+ > pnpm biome lint ./src
5
+
6
+ ./src/types/index.ts:38:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
7
+
8
+  ⚠ An import should not be exported. Use export from instead.
9
+  
10
+   36 │  */
11
+   37 │ import type {
12
+  > 38 │  ComplianceRegion,
13
+     │  ^^^^^^^^^^^^^^^^
14
+   39 │  ComplianceSettings,
15
+   40 │  ConsentState,
16
+  
17
+  ℹ export from makes it clearer that the intention is to re-export a variable.
18
+  
19
+ 
20
+ ./src/types/index.ts:39:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
21
+
22
+  ⚠ An import should not be exported. Use export from instead.
23
+  
24
+   37 │ import type {
25
+   38 │  ComplianceRegion,
26
+  > 39 │  ComplianceSettings,
27
+     │  ^^^^^^^^^^^^^^^^^^
28
+   40 │  ConsentState,
29
+   41 │  HasConsentedProps,
30
+  
31
+  ℹ export from makes it clearer that the intention is to re-export a variable.
32
+  
33
+ 
34
+ ./src/types/index.ts:40:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
35
+
36
+  ⚠ An import should not be exported. Use export from instead.
37
+  
38
+   38 │  ComplianceRegion,
39
+   39 │  ComplianceSettings,
40
+  > 40 │  ConsentState,
41
+     │  ^^^^^^^^^^^^
42
+   41 │  HasConsentedProps,
43
+   42 │  NamespaceProps,
44
+  
45
+  ℹ export from makes it clearer that the intention is to re-export a variable.
46
+  
47
+ 
48
+ ./src/types/index.ts:41:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
49
+
50
+  ⚠ An import should not be exported. Use export from instead.
51
+  
52
+   39 │  ComplianceSettings,
53
+   40 │  ConsentState,
54
+  > 41 │  HasConsentedProps,
55
+     │  ^^^^^^^^^^^^^^^^^
56
+   42 │  NamespaceProps,
57
+   43 │  PrivacySettings,
58
+  
59
+  ℹ export from makes it clearer that the intention is to re-export a variable.
60
+  
61
+ 
62
+ ./src/types/index.ts:42:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
63
+
64
+  ⚠ An import should not be exported. Use export from instead.
65
+  
66
+   40 │  ConsentState,
67
+   41 │  HasConsentedProps,
68
+  > 42 │  NamespaceProps,
69
+     │  ^^^^^^^^^^^^^^
70
+   43 │  PrivacySettings,
71
+   44 │ } from './compliance';
72
+  
73
+  ℹ export from makes it clearer that the intention is to re-export a variable.
74
+  
75
+ 
76
+ ./src/types/index.ts:43:2 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
77
+
78
+  ⚠ An import should not be exported. Use export from instead.
79
+  
80
+   41 │  HasConsentedProps,
81
+   42 │  NamespaceProps,
82
+  > 43 │  PrivacySettings,
83
+     │  ^^^^^^^^^^^^^^^
84
+   44 │ } from './compliance';
85
+   45 │ 
86
+  
87
+  ℹ export from makes it clearer that the intention is to re-export a variable.
88
+  
89
+ 
90
+ ./src/types/index.ts:80:10 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
91
+
92
+  ⚠ An import should not be exported. Use export from instead.
93
+  
94
+   78 │  * ```
95
+   79 │  */
96
+  > 80 │ import { type AllConsentNames, type ConsentType, consentTypes } from './gdpr';
97
+     │          ^^^^^^^^^^^^^^^^^^^^
98
+   81 │ 
99
+   82 │ export { consentTypes };
100
+  
101
+  ℹ export from makes it clearer that the intention is to re-export a variable.
102
+  
103
+ 
104
+ ./src/types/index.ts:80:32 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
105
+
106
+  ⚠ An import should not be exported. Use export from instead.
107
+  
108
+   78 │  * ```
109
+   79 │  */
110
+  > 80 │ import { type AllConsentNames, type ConsentType, consentTypes } from './gdpr';
111
+     │                                ^^^^^^^^^^^^^^^^
112
+   81 │ 
113
+   82 │ export { consentTypes };
114
+  
115
+  ℹ export from makes it clearer that the intention is to re-export a variable.
116
+  
117
+ 
118
+ ./src/types/index.ts:80:50 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
119
+
120
+  ⚠ An import should not be exported. Use export from instead.
121
+  
122
+   78 │  * ```
123
+   79 │  */
124
+  > 80 │ import { type AllConsentNames, type ConsentType, consentTypes } from './gdpr';
125
+     │                                                  ^^^^^^^^^^^^
126
+   81 │ 
127
+   82 │ export { consentTypes };
128
+  
129
+  ℹ export from makes it clearer that the intention is to re-export a variable.
130
+  
131
+ 
132
+ ./src/types/index.ts:123:15 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
133
+
134
+  ⚠ An import should not be exported. Use export from instead.
135
+  
136
+   121 │  * ```
137
+   122 │  */
138
+  > 123 │ import type { CallbackFunction, Callbacks } from './callbacks';
139
+      │               ^^^^^^^^^^^^^^^^
140
+   124 │ 
141
+   125 │ export type { CallbackFunction, Callbacks };
142
+  
143
+  ℹ export from makes it clearer that the intention is to re-export a variable.
144
+  
145
+ 
146
+ ./src/types/index.ts:123:33 ]8;;https://biomejs.dev/linter/rules/no-exported-imports\lint/nursery/noExportedImports]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
147
+
148
+  ⚠ An import should not be exported. Use export from instead.
149
+  
150
+   121 │  * ```
151
+   122 │  */
152
+  > 123 │ import type { CallbackFunction, Callbacks } from './callbacks';
153
+      │                                 ^^^^^^^^^
154
+   124 │ 
155
+   125 │ export type { CallbackFunction, Callbacks };
156
+  
157
+  ℹ export from makes it clearer that the intention is to re-export a variable.
158
+  
159
+ 
160
+ ./src/store.initial-state.ts:106:20 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
161
+
162
+  ⚠ Unexpected empty block.
163
+  
164
+   105 │  // Initialize all methods as no-ops
165
+  > 106 │  setConsent: () => {},
166
+      │                    ^^
167
+   107 │  setShowPopup: () => {},
168
+   108 │  setIsPrivacyDialogOpen: () => {},
169
+  
170
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
171
+  
172
+ 
173
+ ./src/store.initial-state.ts:107:22 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
174
+
175
+  ⚠ Unexpected empty block.
176
+  
177
+   105 │  // Initialize all methods as no-ops
178
+   106 │  setConsent: () => {},
179
+  > 107 │  setShowPopup: () => {},
180
+      │                      ^^
181
+   108 │  setIsPrivacyDialogOpen: () => {},
182
+   109 │  saveConsents: () => {},
183
+  
184
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
185
+  
186
+ 
187
+ ./src/store.initial-state.ts:108:32 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
188
+
189
+  ⚠ Unexpected empty block.
190
+  
191
+   106 │  setConsent: () => {},
192
+   107 │  setShowPopup: () => {},
193
+  > 108 │  setIsPrivacyDialogOpen: () => {},
194
+      │                                ^^
195
+   109 │  saveConsents: () => {},
196
+   110 │  resetConsents: () => {},
197
+  
198
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
199
+  
200
+ 
201
+ ./src/store.initial-state.ts:109:22 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
202
+
203
+  ⚠ Unexpected empty block.
204
+  
205
+   107 │  setShowPopup: () => {},
206
+   108 │  setIsPrivacyDialogOpen: () => {},
207
+  > 109 │  saveConsents: () => {},
208
+      │                      ^^
209
+   110 │  resetConsents: () => {},
210
+   111 │  setGdprTypes: () => {},
211
+  
212
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
213
+  
214
+ 
215
+ ./src/store.initial-state.ts:110:23 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
216
+
217
+  ⚠ Unexpected empty block.
218
+  
219
+   108 │  setIsPrivacyDialogOpen: () => {},
220
+   109 │  saveConsents: () => {},
221
+  > 110 │  resetConsents: () => {},
222
+      │                       ^^
223
+   111 │  setGdprTypes: () => {},
224
+   112 │  setComplianceSetting: () => {},
225
+  
226
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
227
+  
228
+ 
229
+ ./src/store.initial-state.ts:111:22 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
230
+
231
+  ⚠ Unexpected empty block.
232
+  
233
+   109 │  saveConsents: () => {},
234
+   110 │  resetConsents: () => {},
235
+  > 111 │  setGdprTypes: () => {},
236
+      │                      ^^
237
+   112 │  setComplianceSetting: () => {},
238
+   113 │  resetComplianceSettings: () => {},
239
+  
240
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
241
+  
242
+ 
243
+ ./src/store.initial-state.ts:112:30 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
244
+
245
+  ⚠ Unexpected empty block.
246
+  
247
+   110 │  resetConsents: () => {},
248
+   111 │  setGdprTypes: () => {},
249
+  > 112 │  setComplianceSetting: () => {},
250
+      │                              ^^
251
+   113 │  resetComplianceSettings: () => {},
252
+   114 │  setCallback: () => {},
253
+  
254
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
255
+  
256
+ 
257
+ ./src/store.initial-state.ts:113:33 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
258
+
259
+  ⚠ Unexpected empty block.
260
+  
261
+   111 │  setGdprTypes: () => {},
262
+   112 │  setComplianceSetting: () => {},
263
+  > 113 │  resetComplianceSettings: () => {},
264
+      │                                 ^^
265
+   114 │  setCallback: () => {},
266
+   115 │  setDetectedCountry: () => {},
267
+  
268
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
269
+  
270
+ 
271
+ ./src/store.initial-state.ts:114:21 ]8;;https://biomejs.dev/linter/rules/no-empty-block-statements\lint/suspicious/noEmptyBlockStatements]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━
272
+
273
+  ⚠ Unexpected empty block.
274
+  
275
+   112 │  setComplianceSetting: () => {},
276
+   113 │  resetComplianceSettings: () => {},
277
+  > 114 │  setCallback: () => {},
278
+      │                     ^^
279
+   115 │  setDetectedCountry: () => {},
280
+   116 │  getDisplayedConsents: () => [],
281
+  
282
+  ℹ Empty blocks are usually the result of an incomplete refactoring. Remove the empty block or add a comment inside it if it is intentional.
283
+  
284
+ 
285
+ The number of diagnostics exceeds the number allowed by Biome.
286
+ Diagnostics not shown: 22.
287
+ Checked 15 files in 16ms. No fixes applied.
288
+ Found 42 warnings.
@@ -0,0 +1,33 @@
1
+
2
+ 
3
+ > @consent-management/core@0.0.1-rc.1 test /Users/christopherburns/glados/k/koroflow/packages/core
4
+ > vitest run
5
+
6
+ [?25l
7
+  RUN  v3.0.5 /Users/christopherburns/glados/k/koroflow/packages/core
8
+
9
+ [?2026h
10
+  ❯ src/libs/__tests__/tracking-blocker.test.ts [queued]
11
+
12
+  Test Files 0 passed (1)
13
+  Tests 0 passed (0)
14
+  Start at 00:41:41
15
+  Duration 504ms
16
+ [?2026l ✓ src/libs/__tests__/tracking-blocker.test.ts (10 tests) 9ms
17
+ ✓ TrackingBlocker > blocks fetch requests to tracking domains when consent not granted
18
+ ✓ TrackingBlocker > blocks XMLHttpRequest to tracking domains when consent not granted
19
+ ✓ TrackingBlocker > allows fetch requests to tracking domains after consent granted
20
+ ✓ TrackingBlocker > allows XMLHttpRequest to tracking domains after consent granted
21
+ ✓ TrackingBlocker > allows requests to non-tracking domains regardless of consent
22
+ ✓ TrackingBlocker > handles custom domain consent map
23
+ ✓ TrackingBlocker > handles subdomains correctly
24
+ ✓ TrackingBlocker > can be disabled via config
25
+ ✓ TrackingBlocker > cleanup restores original fetch and XMLHttpRequest functionality
26
+ ✓ TrackingBlocker > handles multiple concurrent requests correctly
27
+
28
+  Test Files  1 passed (1)
29
+  Tests  10 passed (10)
30
+  Start at  00:41:41
31
+  Duration  611ms (transform 62ms, setup 0ms, collect 65ms, tests 9ms, environment 165ms, prepare 69ms)
32
+
33
+ [?25h
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # c15t
2
+
3
+
4
+ ## 1.0.0-rc.1
5
+
6
+ ### Patch Changes
7
+
8
+ - Refactored package.json imports
9
+
10
+ ## 0.0.1-beta.10
11
+
12
+ ### Patch Changes
13
+
14
+ - all build tools now use rslib + new formatting from biomejs
15
+
16
+ ## 0.0.1-beta.9
17
+
18
+ ### Patch Changes
19
+
20
+ - 1912aa9: Refactored codebase to use Ultracite Biome Config for stricter linting