uti 8.5.0 → 8.6.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "^6.1.3",
|
|
42
|
-
"browser-ava": "^2.2.
|
|
42
|
+
"browser-ava": "^2.2.14",
|
|
43
43
|
"c8": "^9.1.0",
|
|
44
44
|
"documentation": "^14.0.3",
|
|
45
45
|
"semantic-release": "^23.1.1",
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -198,6 +198,11 @@ export default [
|
|
|
198
198
|
conformsTo: ["public.text", "public.configuration"],
|
|
199
199
|
fileNameExtension: ".conf"
|
|
200
200
|
},
|
|
201
|
+
{
|
|
202
|
+
name: "public.csp-report",
|
|
203
|
+
conformsTo: "public.json",
|
|
204
|
+
mimeType: "application/csp-report"
|
|
205
|
+
},
|
|
201
206
|
{
|
|
202
207
|
name: "public.source-code",
|
|
203
208
|
conformsTo: "public.plain-text"
|
|
@@ -52,6 +52,12 @@ declare const _default: ({
|
|
|
52
52
|
fileNameExtension: string;
|
|
53
53
|
mimeType: string[];
|
|
54
54
|
filNameExtension?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
name: string;
|
|
57
|
+
conformsTo: string;
|
|
58
|
+
mimeType: string;
|
|
59
|
+
fileNameExtension?: undefined;
|
|
60
|
+
filNameExtension?: undefined;
|
|
55
61
|
} | {
|
|
56
62
|
name: string;
|
|
57
63
|
conformsTo: string;
|