@platformatic/vite 3.35.1 → 3.37.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 +5 -0
- package/package.json +6 -6
- package/schema.json +16 -1
package/config.d.ts
CHANGED
|
@@ -319,6 +319,10 @@ export interface PlatformaticViteConfig {
|
|
|
319
319
|
logs?: {
|
|
320
320
|
maxSize?: number;
|
|
321
321
|
};
|
|
322
|
+
/**
|
|
323
|
+
* Custom path for the control socket. If not specified, uses the default platform-specific location.
|
|
324
|
+
*/
|
|
325
|
+
socket?: string;
|
|
322
326
|
};
|
|
323
327
|
metrics?:
|
|
324
328
|
| boolean
|
|
@@ -523,6 +527,7 @@ export interface PlatformaticViteConfig {
|
|
|
523
527
|
[k: string]: unknown;
|
|
524
528
|
};
|
|
525
529
|
applicationTimeout?: number | string;
|
|
530
|
+
startupConcurrency?: number | string;
|
|
526
531
|
messagingTimeout?: number | string;
|
|
527
532
|
env?: {
|
|
528
533
|
[k: string]: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/vite",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.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.7.0",
|
|
20
20
|
"semver": "^7.6.3",
|
|
21
|
-
"@platformatic/basic": "3.
|
|
22
|
-
"@platformatic/foundation": "3.
|
|
23
|
-
"@platformatic/node": "3.
|
|
21
|
+
"@platformatic/basic": "3.37.0",
|
|
22
|
+
"@platformatic/foundation": "3.37.0",
|
|
23
|
+
"@platformatic/node": "3.37.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.
|
|
36
|
-
"@platformatic/service": "3.
|
|
35
|
+
"@platformatic/gateway": "3.37.0",
|
|
36
|
+
"@platformatic/service": "3.37.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.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/vite/3.37.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Vite Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1424,6 +1424,10 @@
|
|
|
1424
1424
|
}
|
|
1425
1425
|
},
|
|
1426
1426
|
"additionalProperties": false
|
|
1427
|
+
},
|
|
1428
|
+
"socket": {
|
|
1429
|
+
"type": "string",
|
|
1430
|
+
"description": "Custom path for the control socket. If not specified, uses the default platform-specific location."
|
|
1427
1431
|
}
|
|
1428
1432
|
},
|
|
1429
1433
|
"additionalProperties": false
|
|
@@ -1906,6 +1910,17 @@
|
|
|
1906
1910
|
],
|
|
1907
1911
|
"default": 300000
|
|
1908
1912
|
},
|
|
1913
|
+
"startupConcurrency": {
|
|
1914
|
+
"anyOf": [
|
|
1915
|
+
{
|
|
1916
|
+
"type": "number",
|
|
1917
|
+
"minimum": 1
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"type": "string"
|
|
1921
|
+
}
|
|
1922
|
+
]
|
|
1923
|
+
},
|
|
1909
1924
|
"messagingTimeout": {
|
|
1910
1925
|
"anyOf": [
|
|
1911
1926
|
{
|