@platformatic/vite 3.17.0 → 3.19.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/config.d.ts CHANGED
@@ -337,6 +337,7 @@ export interface PlatformaticViteConfig {
337
337
  body?: string;
338
338
  };
339
339
  };
340
+ healthChecksTimeouts?: number | string;
340
341
  plugins?: string[];
341
342
  timeout?: number | string;
342
343
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/vite",
3
- "version": "3.17.0",
3
+ "version": "3.19.0",
4
4
  "description": "Platformatic Vite Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,9 +18,9 @@
18
18
  "@fastify/static": "^8.0.0",
19
19
  "fastify": "^5.0.0",
20
20
  "semver": "^7.6.3",
21
- "@platformatic/basic": "3.17.0",
22
- "@platformatic/foundation": "3.17.0",
23
- "@platformatic/node": "3.17.0"
21
+ "@platformatic/basic": "3.19.0",
22
+ "@platformatic/foundation": "3.19.0",
23
+ "@platformatic/node": "3.19.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "cleaner-spec-reporter": "^0.5.0",
@@ -32,8 +32,8 @@
32
32
  "typescript": "^5.5.4",
33
33
  "vite": "^7.1.4",
34
34
  "ws": "^8.18.0",
35
- "@platformatic/gateway": "3.17.0",
36
- "@platformatic/service": "3.17.0"
35
+ "@platformatic/gateway": "3.19.0",
36
+ "@platformatic/service": "3.19.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/vite/3.17.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/vite/3.19.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Vite Config",
5
5
  "type": "object",
@@ -1142,8 +1142,7 @@
1142
1142
  {
1143
1143
  "type": "string"
1144
1144
  }
1145
- ],
1146
- "default": 4294967296
1145
+ ]
1147
1146
  },
1148
1147
  "maxYoungGeneration": {
1149
1148
  "anyOf": [
@@ -1470,6 +1469,17 @@
1470
1469
  }
1471
1470
  ]
1472
1471
  },
1472
+ "healthChecksTimeouts": {
1473
+ "anyOf": [
1474
+ {
1475
+ "type": "integer"
1476
+ },
1477
+ {
1478
+ "type": "string"
1479
+ }
1480
+ ],
1481
+ "default": 5000
1482
+ },
1473
1483
  "plugins": {
1474
1484
  "type": "array",
1475
1485
  "items": {