uti 6.4.0 → 6.5.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/LICENSE +1 -1
- package/package.json +4 -4
- package/src/well-known-utis.mjs +20 -0
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uti",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.5.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"ava": "^3.15.0",
|
|
34
|
-
"c8": "^7.
|
|
34
|
+
"c8": "^7.11.0",
|
|
35
35
|
"documentation": "^13.2.5",
|
|
36
|
-
"semantic-release": "^18.0.
|
|
36
|
+
"semantic-release": "^18.0.1"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=14.
|
|
39
|
+
"node": ">=14.18.1"
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
package/src/well-known-utis.mjs
CHANGED
|
@@ -494,6 +494,26 @@ const types = [
|
|
|
494
494
|
conformsTo: "public.data",
|
|
495
495
|
fileNameExtension: ".p7r",
|
|
496
496
|
mimeType: "application/x-pkcs7-certreqresp"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
name: "public.systemd-service-unit",
|
|
500
|
+
conformsTo: "public.text",
|
|
501
|
+
fileNameExtension: ".service"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
name: "public.systemd-socket-unit",
|
|
505
|
+
conformsTo: "public.text",
|
|
506
|
+
fileNameExtension: ".socket"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
name: "public.systemd-timer-unit",
|
|
510
|
+
conformsTo: "public.text",
|
|
511
|
+
fileNameExtension: ".timer"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
name: "public.systemd-path-unit",
|
|
515
|
+
conformsTo: "public.text",
|
|
516
|
+
fileNameExtension: ".socket"
|
|
497
517
|
}
|
|
498
518
|
];
|
|
499
519
|
|