uti 7.7.1 → 7.7.2
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 +8 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "7.7.
|
|
3
|
+
"version": "7.7.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"ava": "^5.3.1",
|
|
35
|
-
"browser-ava": "^1.3.
|
|
35
|
+
"browser-ava": "^1.3.56",
|
|
36
36
|
"c8": "^8.0.1",
|
|
37
37
|
"documentation": "^14.0.2",
|
|
38
38
|
"semantic-release": "^21.0.7",
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -130,7 +130,7 @@ export default [
|
|
|
130
130
|
{
|
|
131
131
|
name: "public.plain-text",
|
|
132
132
|
conformsTo: "public.text",
|
|
133
|
-
fileNameExtension: ".txt",
|
|
133
|
+
fileNameExtension: [".txt", ".text"],
|
|
134
134
|
mimeType: "text/plain"
|
|
135
135
|
},
|
|
136
136
|
{
|
|
@@ -154,7 +154,7 @@ export default [
|
|
|
154
154
|
{
|
|
155
155
|
name: "public.html",
|
|
156
156
|
conformsTo: "public.text",
|
|
157
|
-
fileNameExtension: [".html", ".htm"],
|
|
157
|
+
fileNameExtension: [".html", ".htm", ".shtml", ".shtm"],
|
|
158
158
|
mimeType: "text/html"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
@@ -253,7 +253,7 @@ export default [
|
|
|
253
253
|
{
|
|
254
254
|
name: "public.make-source",
|
|
255
255
|
conformsTo: "public.script",
|
|
256
|
-
fileNameExtension: [".make", ".mak", ".gmk"]
|
|
256
|
+
fileNameExtension: [".make", ".mak", ".gmk", ".mk"]
|
|
257
257
|
},
|
|
258
258
|
{
|
|
259
259
|
name: "public.perl-script",
|
|
@@ -273,13 +273,12 @@ export default [
|
|
|
273
273
|
{
|
|
274
274
|
name: "public.php-script",
|
|
275
275
|
conformsTo: "public.shell-script",
|
|
276
|
-
fileNameExtension: ".php"
|
|
276
|
+
fileNameExtension: [".php", ".php3", ".php4", ".ph3", ".ph4", ".phtml"]
|
|
277
277
|
},
|
|
278
|
-
|
|
279
278
|
{
|
|
280
279
|
name: "public.assembly-source",
|
|
281
280
|
conformsTo: "public.source-code",
|
|
282
|
-
fileNameExtension: ".s"
|
|
281
|
+
fileNameExtension: [".s", ".asm"]
|
|
283
282
|
},
|
|
284
283
|
{
|
|
285
284
|
name: "public.sourcemap",
|
|
@@ -387,7 +386,7 @@ export default [
|
|
|
387
386
|
{
|
|
388
387
|
name: "public.cpio-archive",
|
|
389
388
|
conformsTo: "public.archive",
|
|
390
|
-
fileNameExtension: ".cpio",
|
|
389
|
+
fileNameExtension: [".cpio", ".pax"],
|
|
391
390
|
mimeType: "application/x-cpio"
|
|
392
391
|
},
|
|
393
392
|
{
|
|
@@ -477,12 +476,12 @@ export default [
|
|
|
477
476
|
{
|
|
478
477
|
name: "com.microsoft.word.doc",
|
|
479
478
|
conformsTo: ["public.data", "public.composite-content"],
|
|
480
|
-
fileNameExtension: ".docx"
|
|
479
|
+
fileNameExtension: [".doc", ".docx"]
|
|
481
480
|
},
|
|
482
481
|
{
|
|
483
482
|
name: "com.microsoft.excel.xls",
|
|
484
483
|
conformsTo: ["public.data", "public.composite-content"],
|
|
485
|
-
fileNameExtension: ".xlsx"
|
|
484
|
+
fileNameExtension: [".xls", ".xlsx"]
|
|
486
485
|
},
|
|
487
486
|
{
|
|
488
487
|
name: "com.microsoft.powerpoint.ppt",
|