@platformatic/basic 3.19.0 → 3.20.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 +1 -0
- package/package.json +5 -5
- package/schema.json +28 -3
package/config.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/basic",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.20.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/
|
|
30
|
-
"@platformatic/
|
|
31
|
-
"@platformatic/telemetry": "3.
|
|
28
|
+
"@platformatic/foundation": "3.20.0",
|
|
29
|
+
"@platformatic/itc": "3.20.0",
|
|
30
|
+
"@platformatic/metrics": "3.20.0",
|
|
31
|
+
"@platformatic/telemetry": "3.20.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.20.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Basic Config",
|
|
5
5
|
"type": "object",
|
|
@@ -191,6 +191,17 @@
|
|
|
191
191
|
"type": "string"
|
|
192
192
|
}
|
|
193
193
|
]
|
|
194
|
+
},
|
|
195
|
+
"codeRangeSize": {
|
|
196
|
+
"anyOf": [
|
|
197
|
+
{
|
|
198
|
+
"type": "number",
|
|
199
|
+
"minimum": 0
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"type": "string"
|
|
203
|
+
}
|
|
204
|
+
]
|
|
194
205
|
}
|
|
195
206
|
},
|
|
196
207
|
"additionalProperties": false
|
|
@@ -784,7 +795,8 @@
|
|
|
784
795
|
{
|
|
785
796
|
"type": "string"
|
|
786
797
|
}
|
|
787
|
-
]
|
|
798
|
+
],
|
|
799
|
+
"default": 4294967296
|
|
788
800
|
},
|
|
789
801
|
"maxYoungGeneration": {
|
|
790
802
|
"anyOf": [
|
|
@@ -795,7 +807,20 @@
|
|
|
795
807
|
{
|
|
796
808
|
"type": "string"
|
|
797
809
|
}
|
|
798
|
-
]
|
|
810
|
+
],
|
|
811
|
+
"default": 134217728
|
|
812
|
+
},
|
|
813
|
+
"codeRangeSize": {
|
|
814
|
+
"anyOf": [
|
|
815
|
+
{
|
|
816
|
+
"type": "number",
|
|
817
|
+
"minimum": 0
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"type": "string"
|
|
821
|
+
}
|
|
822
|
+
],
|
|
823
|
+
"default": 268435456
|
|
799
824
|
}
|
|
800
825
|
},
|
|
801
826
|
"additionalProperties": false
|