@platformatic/basic 3.19.0 → 3.21.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 +29 -5
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.21.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/metrics": "3.
|
|
30
|
-
"@platformatic/itc": "3.
|
|
31
|
-
"@platformatic/telemetry": "3.
|
|
28
|
+
"@platformatic/foundation": "3.21.0",
|
|
29
|
+
"@platformatic/metrics": "3.21.0",
|
|
30
|
+
"@platformatic/itc": "3.21.0",
|
|
31
|
+
"@platformatic/telemetry": "3.21.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.21.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
|
|
@@ -218,8 +229,7 @@
|
|
|
218
229
|
"type": "string"
|
|
219
230
|
},
|
|
220
231
|
"sourceMaps": {
|
|
221
|
-
"type": "boolean"
|
|
222
|
-
"default": false
|
|
232
|
+
"type": "boolean"
|
|
223
233
|
},
|
|
224
234
|
"packageManager": {
|
|
225
235
|
"type": "string",
|
|
@@ -784,7 +794,8 @@
|
|
|
784
794
|
{
|
|
785
795
|
"type": "string"
|
|
786
796
|
}
|
|
787
|
-
]
|
|
797
|
+
],
|
|
798
|
+
"default": 4294967296
|
|
788
799
|
},
|
|
789
800
|
"maxYoungGeneration": {
|
|
790
801
|
"anyOf": [
|
|
@@ -795,7 +806,20 @@
|
|
|
795
806
|
{
|
|
796
807
|
"type": "string"
|
|
797
808
|
}
|
|
798
|
-
]
|
|
809
|
+
],
|
|
810
|
+
"default": 134217728
|
|
811
|
+
},
|
|
812
|
+
"codeRangeSize": {
|
|
813
|
+
"anyOf": [
|
|
814
|
+
{
|
|
815
|
+
"type": "number",
|
|
816
|
+
"minimum": 0
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"type": "string"
|
|
820
|
+
}
|
|
821
|
+
],
|
|
822
|
+
"default": 268435456
|
|
799
823
|
}
|
|
800
824
|
},
|
|
801
825
|
"additionalProperties": false
|