@naturalcycles/backend-lib 9.42.2 → 9.42.3

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.
@@ -63,7 +63,7 @@ export const serverStatsHTMLHandler = (req, res) => {
63
63
  '<tr>',
64
64
  `<td><pre>${endpoint}</pre></td>`,
65
65
  `<td align="right"><pre>${stat.total}</pre></td>`,
66
- // oxlint-disable-next-line @typescript-eslint/no-base-to-string typescript/restrict-template-expressions
66
+ // oxlint-disable-next-line @typescript-eslint/no-base-to-string
67
67
  ...families.map(f => `<td align="right"><pre>${stat[f]}</pre></td>`),
68
68
  ...percentiles.map(pc => `<td align="right"><pre>${stat.pc[pc]}</pre></td>`),
69
69
  '</tr>',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
3
  "type": "module",
4
- "version": "9.42.2",
4
+ "version": "9.42.3",
5
5
  "peerDependencies": {
6
6
  "@sentry/node": "^10"
7
7
  },
@@ -29,7 +29,7 @@
29
29
  "@sentry/node": "^10",
30
30
  "@types/ejs": "^3",
31
31
  "fastify": "^5",
32
- "@naturalcycles/dev-lib": "18.4.2"
32
+ "@naturalcycles/dev-lib": "20.11.1"
33
33
  },
34
34
  "exports": {
35
35
  ".": "./dist/index.js",
@@ -87,7 +87,7 @@ export const serverStatsHTMLHandler: BackendRequestHandler = (req, res) => {
87
87
  '<tr>',
88
88
  `<td><pre>${endpoint}</pre></td>`,
89
89
  `<td align="right"><pre>${stat.total}</pre></td>`,
90
- // oxlint-disable-next-line @typescript-eslint/no-base-to-string typescript/restrict-template-expressions
90
+ // oxlint-disable-next-line @typescript-eslint/no-base-to-string
91
91
  ...families.map(f => `<td align="right"><pre>${stat[f]}</pre></td>`),
92
92
  ...percentiles.map(pc => `<td align="right"><pre>${stat.pc![pc]}</pre></td>`),
93
93
  '</tr>',