@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 CHANGED
@@ -127,6 +127,7 @@ export interface PlatformaticBasicConfig {
127
127
  maxHeapUsed?: number | string;
128
128
  maxHeapTotal?: number | string;
129
129
  maxYoungGeneration?: number | string;
130
+ codeRangeSize?: number | string;
130
131
  };
131
132
  undici?: {
132
133
  agentOptions?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/basic",
3
- "version": "3.19.0",
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.19.0",
29
- "@platformatic/metrics": "3.19.0",
30
- "@platformatic/itc": "3.19.0",
31
- "@platformatic/telemetry": "3.19.0"
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.19.0.json",
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