@platformatic/composer 3.30.0 → 3.32.0-alpha.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 +2 -0
- package/package.json +3 -3
- package/schema.json +32 -1
package/config.d.ts
CHANGED
|
@@ -299,6 +299,7 @@ export interface PlatformaticComposerConfig {
|
|
|
299
299
|
maxHeapTotal?: number | string;
|
|
300
300
|
maxYoungGeneration?: number | string;
|
|
301
301
|
codeRangeSize?: number | string;
|
|
302
|
+
noHeapCheck?: boolean | string;
|
|
302
303
|
};
|
|
303
304
|
undici?: {
|
|
304
305
|
agentOptions?: {
|
|
@@ -602,6 +603,7 @@ export interface PlatformaticComposerConfig {
|
|
|
602
603
|
maxHeapTotal?: number | string;
|
|
603
604
|
maxYoungGeneration?: number | string;
|
|
604
605
|
codeRangeSize?: number | string;
|
|
606
|
+
noHeapCheck?: boolean | string;
|
|
605
607
|
};
|
|
606
608
|
arguments?: string[];
|
|
607
609
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"json-schema-to-typescript": "^15.0.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@platformatic/gateway": "3.
|
|
27
|
-
"@platformatic/foundation": "3.
|
|
26
|
+
"@platformatic/gateway": "3.32.0-alpha.0",
|
|
27
|
+
"@platformatic/foundation": "3.32.0-alpha.0"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.32.0-alpha.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -872,6 +872,16 @@
|
|
|
872
872
|
"type": "string"
|
|
873
873
|
}
|
|
874
874
|
]
|
|
875
|
+
},
|
|
876
|
+
"noHeapCheck": {
|
|
877
|
+
"anyOf": [
|
|
878
|
+
{
|
|
879
|
+
"type": "boolean"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
"type": "string"
|
|
883
|
+
}
|
|
884
|
+
]
|
|
875
885
|
}
|
|
876
886
|
},
|
|
877
887
|
"additionalProperties": false
|
|
@@ -1516,6 +1526,17 @@
|
|
|
1516
1526
|
}
|
|
1517
1527
|
],
|
|
1518
1528
|
"default": 268435456
|
|
1529
|
+
},
|
|
1530
|
+
"noHeapCheck": {
|
|
1531
|
+
"anyOf": [
|
|
1532
|
+
{
|
|
1533
|
+
"type": "boolean"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"type": "string"
|
|
1537
|
+
}
|
|
1538
|
+
],
|
|
1539
|
+
"default": false
|
|
1519
1540
|
}
|
|
1520
1541
|
},
|
|
1521
1542
|
"additionalProperties": false
|
|
@@ -2409,6 +2430,16 @@
|
|
|
2409
2430
|
"type": "string"
|
|
2410
2431
|
}
|
|
2411
2432
|
]
|
|
2433
|
+
},
|
|
2434
|
+
"noHeapCheck": {
|
|
2435
|
+
"anyOf": [
|
|
2436
|
+
{
|
|
2437
|
+
"type": "boolean"
|
|
2438
|
+
},
|
|
2439
|
+
{
|
|
2440
|
+
"type": "string"
|
|
2441
|
+
}
|
|
2442
|
+
]
|
|
2412
2443
|
}
|
|
2413
2444
|
},
|
|
2414
2445
|
"additionalProperties": false
|