@platformatic/runtime 2.43.0 → 2.44.1
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 +1 -1
- package/lib/runtime.js +1 -1
- package/package.json +14 -14
- package/schema.json +1 -1
package/config.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
export type
|
|
8
|
+
export type HttpsSchemasPlatformaticDevPlatformaticRuntime2441Json = {
|
|
9
9
|
[k: string]: unknown;
|
|
10
10
|
} & {
|
|
11
11
|
$schema?: string;
|
package/lib/runtime.js
CHANGED
|
@@ -1338,7 +1338,7 @@ class Runtime extends EventEmitter {
|
|
|
1338
1338
|
await worker.terminate()
|
|
1339
1339
|
}
|
|
1340
1340
|
|
|
1341
|
-
this.emit('service:worker:start:error', eventPayload)
|
|
1341
|
+
this.emit('service:worker:start:error', { ...eventPayload, error })
|
|
1342
1342
|
|
|
1343
1343
|
if (error.code !== 'PLT_RUNTIME_SERVICE_START_TIMEOUT') {
|
|
1344
1344
|
this.logger.error({ err: ensureLoggableError(error) }, `Failed to start ${label}.`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/runtime",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.44.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"typescript": "^5.5.4",
|
|
37
37
|
"undici-oidc-interceptor": "^0.5.0",
|
|
38
38
|
"why-is-node-running": "^2.2.2",
|
|
39
|
-
"@platformatic/composer": "2.
|
|
40
|
-
"@platformatic/
|
|
41
|
-
"@platformatic/
|
|
42
|
-
"@platformatic/
|
|
43
|
-
"@platformatic/sql-
|
|
44
|
-
"@platformatic/
|
|
39
|
+
"@platformatic/composer": "2.44.1",
|
|
40
|
+
"@platformatic/db": "2.44.1",
|
|
41
|
+
"@platformatic/node": "2.44.1",
|
|
42
|
+
"@platformatic/sql-mapper": "2.44.1",
|
|
43
|
+
"@platformatic/sql-graphql": "2.44.1",
|
|
44
|
+
"@platformatic/service": "2.44.1"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@fastify/accepts": "^5.0.0",
|
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
"undici": "^7.0.0",
|
|
76
76
|
"undici-thread-interceptor": "^0.11.0",
|
|
77
77
|
"ws": "^8.16.0",
|
|
78
|
-
"@platformatic/basic": "2.
|
|
79
|
-
"@platformatic/config": "2.
|
|
80
|
-
"@platformatic/
|
|
81
|
-
"@platformatic/
|
|
82
|
-
"@platformatic/
|
|
83
|
-
"@platformatic/ts-compiler": "2.
|
|
84
|
-
"@platformatic/
|
|
78
|
+
"@platformatic/basic": "2.44.1",
|
|
79
|
+
"@platformatic/config": "2.44.1",
|
|
80
|
+
"@platformatic/itc": "2.44.1",
|
|
81
|
+
"@platformatic/telemetry": "2.44.1",
|
|
82
|
+
"@platformatic/generators": "2.44.1",
|
|
83
|
+
"@platformatic/ts-compiler": "2.44.1",
|
|
84
|
+
"@platformatic/utils": "2.44.1"
|
|
85
85
|
},
|
|
86
86
|
"scripts": {
|
|
87
87
|
"test": "npm run lint && borp --concurrency=1 --timeout=300000 && tsd",
|
package/schema.json
CHANGED