@platformatic/vite 3.22.0 → 3.23.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 +8 -0
- package/lib/capability.js +7 -2
- package/package.json +6 -6
- package/schema.json +9 -1
package/config.d.ts
CHANGED
|
@@ -60,6 +60,10 @@ export interface PlatformaticViteConfig {
|
|
|
60
60
|
server?: {
|
|
61
61
|
hostname?: string;
|
|
62
62
|
port?: number | string;
|
|
63
|
+
/**
|
|
64
|
+
* The maximum length of the queue of pending connections
|
|
65
|
+
*/
|
|
66
|
+
backlog?: number;
|
|
63
67
|
http2?: boolean;
|
|
64
68
|
https?: {
|
|
65
69
|
allowHTTP1?: boolean;
|
|
@@ -185,6 +189,10 @@ export interface PlatformaticViteConfig {
|
|
|
185
189
|
server?: {
|
|
186
190
|
hostname?: string;
|
|
187
191
|
port?: number | string;
|
|
192
|
+
/**
|
|
193
|
+
* The maximum length of the queue of pending connections
|
|
194
|
+
*/
|
|
195
|
+
backlog?: number;
|
|
188
196
|
http2?: boolean;
|
|
189
197
|
https?: {
|
|
190
198
|
allowHTTP1?: boolean;
|
package/lib/capability.js
CHANGED
|
@@ -180,7 +180,7 @@ export class ViteCapability extends BaseCapability {
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
// Prepare options
|
|
183
|
-
const { hostname, port, https, cors } = this.serverConfig ?? {}
|
|
183
|
+
const { hostname, port, https, cors, backlog } = this.serverConfig ?? {}
|
|
184
184
|
const configFile = config.vite.configFile ? resolve(this.root, config.vite.configFile) : undefined
|
|
185
185
|
|
|
186
186
|
const serverOptions = {
|
|
@@ -199,7 +199,8 @@ export class ViteCapability extends BaseCapability {
|
|
|
199
199
|
// Require Vite
|
|
200
200
|
const serverPromise = createServerListener(
|
|
201
201
|
(this.isEntrypoint ? serverOptions?.port : undefined) ?? true,
|
|
202
|
-
(this.isEntrypoint ? serverOptions?.hostname : undefined) ?? true
|
|
202
|
+
(this.isEntrypoint ? serverOptions?.hostname : undefined) ?? true,
|
|
203
|
+
typeof backlog === 'number' ? { backlog } : {}
|
|
203
204
|
)
|
|
204
205
|
const { createServer } = await importFile(resolve(this.#vite, 'dist/node/index.js'))
|
|
205
206
|
|
|
@@ -238,6 +239,10 @@ export class ViteCapability extends BaseCapability {
|
|
|
238
239
|
const serverOptions = this.serverConfig
|
|
239
240
|
const listenOptions = { host: serverOptions?.hostname || '127.0.0.1', port: serverOptions?.port || 0 }
|
|
240
241
|
|
|
242
|
+
if (typeof serverOptions?.backlog === 'number') {
|
|
243
|
+
createServerListener(false, false, { backlog: serverOptions.backlog })
|
|
244
|
+
}
|
|
245
|
+
|
|
241
246
|
await this.#app.listen(listenOptions)
|
|
242
247
|
this.url = getServerUrl(this.#app.server)
|
|
243
248
|
return this.url
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/vite",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.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.
|
|
22
|
-
"@platformatic/foundation": "3.
|
|
23
|
-
"@platformatic/node": "3.
|
|
21
|
+
"@platformatic/basic": "3.23.0",
|
|
22
|
+
"@platformatic/foundation": "3.23.0",
|
|
23
|
+
"@platformatic/node": "3.23.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.23.0",
|
|
36
|
+
"@platformatic/service": "3.23.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.23.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Vite Config",
|
|
5
5
|
"type": "object",
|
|
@@ -178,6 +178,10 @@
|
|
|
178
178
|
}
|
|
179
179
|
]
|
|
180
180
|
},
|
|
181
|
+
"backlog": {
|
|
182
|
+
"type": "integer",
|
|
183
|
+
"description": "The maximum length of the queue of pending connections"
|
|
184
|
+
},
|
|
181
185
|
"http2": {
|
|
182
186
|
"type": "boolean"
|
|
183
187
|
},
|
|
@@ -907,6 +911,10 @@
|
|
|
907
911
|
}
|
|
908
912
|
]
|
|
909
913
|
},
|
|
914
|
+
"backlog": {
|
|
915
|
+
"type": "integer",
|
|
916
|
+
"description": "The maximum length of the queue of pending connections"
|
|
917
|
+
},
|
|
910
918
|
"http2": {
|
|
911
919
|
"type": "boolean"
|
|
912
920
|
},
|