entitlement-provider 2.9.198 → 2.9.200

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.
Files changed (1) hide show
  1. package/package.json +25 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entitlement-provider",
3
- "version": "2.9.198",
3
+ "version": "2.9.200",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -43,12 +43,12 @@
43
43
  "ava": "^5.1.1",
44
44
  "c8": "^7.1.0",
45
45
  "got": "^12.5.3",
46
- "npm-pkgbuild": "^10.20.0",
46
+ "npm-pkgbuild": "^11.1.6",
47
47
  "semantic-release": "^20.0.2"
48
48
  },
49
49
  "optionalDependencies": {
50
50
  "@kronos-integration/service-systemd": "^2.5.6",
51
- "mf-hosting": "^1.8.2"
51
+ "mf-hosting": "^1.8.5"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">=18.13.0"
@@ -82,7 +82,6 @@
82
82
  "${systemd.unit.dir}${name}.service": "pkg/${name}.service",
83
83
  "${systemd.unit.dir}${name}.socket": "pkg/${name}.socket",
84
84
  "${config.dir}config.json": "config/config.json",
85
- "${nginx.sites.dir}${name}.conf": "pkg/nginx.conf",
86
85
  "${well-known.content.dir}openid-configuration": "config/openid-configuration",
87
86
  "${sysusers.config.dir}${name}.conf": "pkg/sysusers.conf",
88
87
  "${tmpfiles.config.dir}${name}.conf": "pkg/tmpfiles.conf"
@@ -99,7 +98,7 @@
99
98
  [
100
99
  "@semantic-release/exec",
101
100
  {
102
- "publishCmd": "npx npm-pkgbuild --available --continue --publish dist --verbose"
101
+ "publishCmd": "npx npm-pkgbuild --available --continue --publish dist"
103
102
  }
104
103
  ],
105
104
  [
@@ -108,15 +107,31 @@
108
107
  "assets": [
109
108
  {
110
109
  "path": "dist/*.deb",
111
- "label": "Debian Package"
110
+ "label": "any Debian Package"
112
111
  },
113
112
  {
114
- "path": "dist/*.pkg.*",
115
- "label": "Arch Linux Package"
113
+ "path": "dist/*any.pkg.*",
114
+ "label": "any Arch Linux Package"
116
115
  },
117
116
  {
118
- "path": "dist/*.rpm",
119
- "label": "RPM"
117
+ "path": "dist/*x86_64.pkg.*",
118
+ "label": "x86_64 Arch Linux Package"
119
+ },
120
+ {
121
+ "path": "dist/*aarch64.pkg.*",
122
+ "label": "arm64 Arch Linux Package"
123
+ },
124
+ {
125
+ "path": "dist/*noarch.rpm",
126
+ "label": "noarch RPM"
127
+ },
128
+ {
129
+ "path": "dist/*x86_64.rpm",
130
+ "label": "x86_64 RPM"
131
+ },
132
+ {
133
+ "path": "dist/*aarch64.rpm",
134
+ "label": "arm64 RPM"
120
135
  }
121
136
  ]
122
137
  }