@platformatic/next 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
|
@@ -242,6 +242,7 @@ export interface PlatformaticNextJsConfig {
|
|
|
242
242
|
maxHeapTotal?: number | string;
|
|
243
243
|
maxYoungGeneration?: number | string;
|
|
244
244
|
codeRangeSize?: number | string;
|
|
245
|
+
noHeapCheck?: boolean | string;
|
|
245
246
|
};
|
|
246
247
|
undici?: {
|
|
247
248
|
agentOptions?: {
|
|
@@ -545,6 +546,7 @@ export interface PlatformaticNextJsConfig {
|
|
|
545
546
|
maxHeapTotal?: number | string;
|
|
546
547
|
maxYoungGeneration?: number | string;
|
|
547
548
|
codeRangeSize?: number | string;
|
|
549
|
+
noHeapCheck?: boolean | string;
|
|
548
550
|
};
|
|
549
551
|
arguments?: string[];
|
|
550
552
|
env?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/next",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0-alpha.0",
|
|
4
4
|
"description": "Platformatic Next.js Capability",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"iovalkey": "^0.3.0",
|
|
24
24
|
"msgpackr": "^1.11.2",
|
|
25
25
|
"semver": "^7.6.3",
|
|
26
|
-
"@platformatic/basic": "3.
|
|
27
|
-
"@platformatic/foundation": "3.
|
|
26
|
+
"@platformatic/basic": "3.32.0-alpha.0",
|
|
27
|
+
"@platformatic/foundation": "3.32.0-alpha.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@fastify/reply-from": "^12.0.0",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"next": "^16.0.0",
|
|
41
41
|
"typescript": "^5.5.4",
|
|
42
42
|
"ws": "^8.18.0",
|
|
43
|
-
"@platformatic/
|
|
44
|
-
"@platformatic/
|
|
43
|
+
"@platformatic/gateway": "3.32.0-alpha.0",
|
|
44
|
+
"@platformatic/service": "3.32.0-alpha.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.19.0"
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/next/3.32.0-alpha.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Next.js Config",
|
|
5
5
|
"type": "object",
|
|
@@ -574,6 +574,16 @@
|
|
|
574
574
|
"type": "string"
|
|
575
575
|
}
|
|
576
576
|
]
|
|
577
|
+
},
|
|
578
|
+
"noHeapCheck": {
|
|
579
|
+
"anyOf": [
|
|
580
|
+
{
|
|
581
|
+
"type": "boolean"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"type": "string"
|
|
585
|
+
}
|
|
586
|
+
]
|
|
577
587
|
}
|
|
578
588
|
},
|
|
579
589
|
"additionalProperties": false
|
|
@@ -1218,6 +1228,17 @@
|
|
|
1218
1228
|
}
|
|
1219
1229
|
],
|
|
1220
1230
|
"default": 268435456
|
|
1231
|
+
},
|
|
1232
|
+
"noHeapCheck": {
|
|
1233
|
+
"anyOf": [
|
|
1234
|
+
{
|
|
1235
|
+
"type": "boolean"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"type": "string"
|
|
1239
|
+
}
|
|
1240
|
+
],
|
|
1241
|
+
"default": false
|
|
1221
1242
|
}
|
|
1222
1243
|
},
|
|
1223
1244
|
"additionalProperties": false
|
|
@@ -2111,6 +2132,16 @@
|
|
|
2111
2132
|
"type": "string"
|
|
2112
2133
|
}
|
|
2113
2134
|
]
|
|
2135
|
+
},
|
|
2136
|
+
"noHeapCheck": {
|
|
2137
|
+
"anyOf": [
|
|
2138
|
+
{
|
|
2139
|
+
"type": "boolean"
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"type": "string"
|
|
2143
|
+
}
|
|
2144
|
+
]
|
|
2114
2145
|
}
|
|
2115
2146
|
},
|
|
2116
2147
|
"additionalProperties": false
|