uti 7.6.0 → 7.7.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 +1 -1
- package/src/well-known-utis.mjs +19 -0
package/package.json
CHANGED
package/src/well-known-utis.mjs
CHANGED
|
@@ -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"],
|
|
@@ -685,5 +691,18 @@ export default [
|
|
|
685
691
|
name: "public.polkit.rules",
|
|
686
692
|
conformsTo: ["com.netscape.javascript-source", "public.configuration"],
|
|
687
693
|
fileNameExtension: ".rules"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
name: "com.apple.xcode.project",
|
|
697
|
+
conformsTo: ["public.composite-content", "com.apple.package"],
|
|
698
|
+
fileNameExtension: [".xcodeproj", ".xcode", ".pbproj"]
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
name: "public.c-plus-plus-header",
|
|
702
|
+
fileNameExtension: [".hh", ".hp", ".hpp", ".hxx", ".h++", ".ipp"]
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
name: "public.c-plus-plus-source",
|
|
706
|
+
fileNameExtension: [".cc", ".cp", ".cpp", ".cxx", ".c++"]
|
|
688
707
|
}
|
|
689
708
|
];
|