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 CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015-2021 by Markus Felten
1
+ Copyright (c) 2015-2022 by Markus Felten
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uti",
3
- "version": "6.4.0",
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.9.0",
34
+ "c8": "^7.11.0",
35
35
  "documentation": "^13.2.5",
36
- "semantic-release": "^18.0.0"
36
+ "semantic-release": "^18.0.1"
37
37
  },
38
38
  "engines": {
39
- "node": ">=14.17.6"
39
+ "node": ">=14.18.1"
40
40
  },
41
41
  "repository": {
42
42
  "type": "git",
@@ -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