uti 6.6.1 → 6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uti",
3
- "version": "6.6.1",
3
+ "version": "6.7.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,7 +33,7 @@
33
33
  "ava": "^4.0.1",
34
34
  "c8": "^7.11.0",
35
35
  "documentation": "^13.2.5",
36
- "semantic-release": "^18.0.1"
36
+ "semantic-release": "^19.0.2"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=14.18.3"
@@ -157,6 +157,12 @@ const types = [
157
157
  fileNameExtension: [".html", ".htm"],
158
158
  mimeType: "text/html"
159
159
  },
160
+ {
161
+ name: "public.css",
162
+ conformsTo: "public.text",
163
+ fileNameExtension: ".css",
164
+ mimeType: "text/css"
165
+ },
160
166
  {
161
167
  name: "public.xml",
162
168
  conformsTo: "public.text",
@@ -570,6 +576,12 @@ const types = [
570
576
  name: "public.systemd-scope-unit",
571
577
  conformsTo: ["public.text", "public.configuration"],
572
578
  fileNameExtension: ".scope"
579
+ },
580
+ {
581
+ name: "public.webmanifest",
582
+ conformsTo: "public.json",
583
+ fileNameExtension: ".webmanifest",
584
+ mimeType: "application/manifest+json"
573
585
  }
574
586
  ];
575
587