uti 7.6.0 → 7.7.1

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": "7.6.0",
3
+ "version": "7.7.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -175,6 +175,12 @@ export default [
175
175
  fileNameExtension: ".json",
176
176
  mimeType: ["application/json", "text/json"]
177
177
  },
178
+ {
179
+ name: "public.yaml",
180
+ conformsTo: "public.text",
181
+ fileNameExtension: [".yml", ".yaml"],
182
+ mimeType: "application/x-yaml"
183
+ },
178
184
  {
179
185
  name: "public.toml",
180
186
  conformsTo: ["public.text", "public.configuration"],
@@ -338,11 +344,22 @@ export default [
338
344
  mimeType: "application/tar+gzip",
339
345
  fileNameExtension: [".tar.gz", ".tgz"]
340
346
  },
347
+ {
348
+ name: "public.tar-bzip2-archive",
349
+ conformsTo: "public.bzip2-archive",
350
+ fileNameExtension: [".tbz2", ".tbz"]
351
+ },
341
352
  {
342
353
  name: "com.apple.xar-archive",
343
354
  conformsTo: "public.archive",
344
355
  fileNameExtension: ".xar"
345
356
  },
357
+ {
358
+ name: "com.microsoft.cab-archive",
359
+ conformsTo: ["public.archive", "public.data"],
360
+ fileNameExtension: ".cab",
361
+ mimeType: "application/vnd.ms-cab-compressed"
362
+ },
346
363
  {
347
364
  name: "public.xz-archive",
348
365
  conformsTo: "public.archive",
@@ -388,7 +405,7 @@ export default [
388
405
  name: "public.deb-archive",
389
406
  conformsTo: "public.ar-archive",
390
407
  fileNameExtension: ".deb",
391
- mimeType: "application/vnd.debian.binary-package"
408
+ mimeType: ["application/vnd.debian.binary-package", "application/x-deb"]
392
409
  },
393
410
  {
394
411
  name: "public.arch-linux-archive",
@@ -685,5 +702,18 @@ export default [
685
702
  name: "public.polkit.rules",
686
703
  conformsTo: ["com.netscape.javascript-source", "public.configuration"],
687
704
  fileNameExtension: ".rules"
705
+ },
706
+ {
707
+ name: "com.apple.xcode.project",
708
+ conformsTo: ["public.composite-content", "com.apple.package"],
709
+ fileNameExtension: [".xcodeproj", ".xcode", ".pbproj"]
710
+ },
711
+ {
712
+ name: "public.c-plus-plus-header",
713
+ fileNameExtension: [".hh", ".hp", ".hpp", ".hxx", ".h++", ".ipp"]
714
+ },
715
+ {
716
+ name: "public.c-plus-plus-source",
717
+ fileNameExtension: [".cc", ".cp", ".cpp", ".cxx", ".c++"]
688
718
  }
689
719
  ];