uti 6.7.3 → 6.8.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 +2 -2
- package/src/well-known-utis.mjs +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.8.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"ava": "^4.
|
|
33
|
+
"ava": "^4.2.0",
|
|
34
34
|
"c8": "^7.11.0",
|
|
35
35
|
"documentation": "^13.2.5",
|
|
36
36
|
"semantic-release": "^19.0.2"
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -582,7 +582,12 @@ const types = [
|
|
|
582
582
|
conformsTo: "public.json",
|
|
583
583
|
fileNameExtension: ".webmanifest",
|
|
584
584
|
mimeType: "application/manifest+json"
|
|
585
|
-
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
name: "public.polkit.rules",
|
|
588
|
+
conformsTo: ["com.netscape.javascript-source", "public.configuration"],
|
|
589
|
+
fileNameExtension: ".rules"
|
|
590
|
+
},
|
|
586
591
|
];
|
|
587
592
|
|
|
588
593
|
export default types;
|