@platformatic/basic 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 +5 -5
- package/schema.json +32 -1
package/config.d.ts
CHANGED
|
@@ -134,6 +134,7 @@ export interface PlatformaticBasicConfig {
|
|
|
134
134
|
maxHeapTotal?: number | string;
|
|
135
135
|
maxYoungGeneration?: number | string;
|
|
136
136
|
codeRangeSize?: number | string;
|
|
137
|
+
noHeapCheck?: boolean | string;
|
|
137
138
|
};
|
|
138
139
|
undici?: {
|
|
139
140
|
agentOptions?: {
|
|
@@ -437,6 +438,7 @@ export interface PlatformaticBasicConfig {
|
|
|
437
438
|
maxHeapTotal?: number | string;
|
|
438
439
|
maxYoungGeneration?: number | string;
|
|
439
440
|
codeRangeSize?: number | string;
|
|
441
|
+
noHeapCheck?: boolean | string;
|
|
440
442
|
};
|
|
441
443
|
arguments?: string[];
|
|
442
444
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/basic",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"split2": "^4.2.0",
|
|
26
26
|
"undici": "^7.0.0",
|
|
27
27
|
"ws": "^8.18.0",
|
|
28
|
-
"@platformatic/foundation": "3.
|
|
29
|
-
"@platformatic/itc": "3.
|
|
30
|
-
"@platformatic/
|
|
31
|
-
"@platformatic/
|
|
28
|
+
"@platformatic/foundation": "3.32.0-alpha.0",
|
|
29
|
+
"@platformatic/itc": "3.32.0-alpha.0",
|
|
30
|
+
"@platformatic/telemetry": "3.32.0-alpha.0",
|
|
31
|
+
"@platformatic/metrics": "3.32.0-alpha.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"cleaner-spec-reporter": "^0.5.0",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/basic/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/basic/3.32.0-alpha.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Basic Config",
|
|
5
5
|
"type": "object",
|
|
@@ -212,6 +212,16 @@
|
|
|
212
212
|
"type": "string"
|
|
213
213
|
}
|
|
214
214
|
]
|
|
215
|
+
},
|
|
216
|
+
"noHeapCheck": {
|
|
217
|
+
"anyOf": [
|
|
218
|
+
{
|
|
219
|
+
"type": "boolean"
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"type": "string"
|
|
223
|
+
}
|
|
224
|
+
]
|
|
215
225
|
}
|
|
216
226
|
},
|
|
217
227
|
"additionalProperties": false
|
|
@@ -856,6 +866,17 @@
|
|
|
856
866
|
}
|
|
857
867
|
],
|
|
858
868
|
"default": 268435456
|
|
869
|
+
},
|
|
870
|
+
"noHeapCheck": {
|
|
871
|
+
"anyOf": [
|
|
872
|
+
{
|
|
873
|
+
"type": "boolean"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"type": "string"
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"default": false
|
|
859
880
|
}
|
|
860
881
|
},
|
|
861
882
|
"additionalProperties": false
|
|
@@ -1749,6 +1770,16 @@
|
|
|
1749
1770
|
"type": "string"
|
|
1750
1771
|
}
|
|
1751
1772
|
]
|
|
1773
|
+
},
|
|
1774
|
+
"noHeapCheck": {
|
|
1775
|
+
"anyOf": [
|
|
1776
|
+
{
|
|
1777
|
+
"type": "boolean"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"type": "string"
|
|
1781
|
+
}
|
|
1782
|
+
]
|
|
1752
1783
|
}
|
|
1753
1784
|
},
|
|
1754
1785
|
"additionalProperties": false
|