@platformatic/remix 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.
Files changed (3) hide show
  1. package/config.d.ts +10 -0
  2. package/package.json +6 -6
  3. package/schema.json +62 -6
package/config.d.ts CHANGED
@@ -231,6 +231,7 @@ export interface PlatformaticRemixConfig {
231
231
  maxHeapUsed?: number | string;
232
232
  maxHeapTotal?: number | string;
233
233
  maxYoungGeneration?: number | string;
234
+ codeRangeSize?: number | string;
234
235
  };
235
236
  undici?: {
236
237
  agentOptions?: {
@@ -530,6 +531,15 @@ export interface PlatformaticRemixConfig {
530
531
  serverDirectory?: string;
531
532
  }
532
533
  | boolean;
534
+ notFoundHandler?:
535
+ | boolean
536
+ | string
537
+ | {
538
+ enabled?: boolean;
539
+ path?: string;
540
+ contentType?: string;
541
+ statusCode?: number;
542
+ };
533
543
  };
534
544
  remix?: {
535
545
  outputDirectory?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/remix",
3
- "version": "3.19.0",
3
+ "version": "3.21.0",
4
4
  "description": "Platformatic Remix Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -20,9 +20,9 @@
20
20
  "light-my-request": "^6.0.0",
21
21
  "pino-http": "^10.2.0",
22
22
  "semver": "^7.6.3",
23
- "@platformatic/basic": "3.19.0",
24
- "@platformatic/foundation": "3.19.0",
25
- "@platformatic/vite": "3.19.0"
23
+ "@platformatic/basic": "3.21.0",
24
+ "@platformatic/vite": "3.21.0",
25
+ "@platformatic/foundation": "3.21.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@remix-run/dev": "^2.16.8",
@@ -41,8 +41,8 @@
41
41
  "typescript": "^5.5.4",
42
42
  "vite": "^5.4.2",
43
43
  "ws": "^8.18.0",
44
- "@platformatic/gateway": "3.19.0",
45
- "@platformatic/service": "3.19.0"
44
+ "@platformatic/gateway": "3.21.0",
45
+ "@platformatic/service": "3.21.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/remix/3.19.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/remix/3.21.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Remix Config",
5
5
  "type": "object",
@@ -549,6 +549,17 @@
549
549
  "type": "string"
550
550
  }
551
551
  ]
552
+ },
553
+ "codeRangeSize": {
554
+ "anyOf": [
555
+ {
556
+ "type": "number",
557
+ "minimum": 0
558
+ },
559
+ {
560
+ "type": "string"
561
+ }
562
+ ]
552
563
  }
553
564
  },
554
565
  "additionalProperties": false
@@ -576,8 +587,7 @@
576
587
  "type": "string"
577
588
  },
578
589
  "sourceMaps": {
579
- "type": "boolean",
580
- "default": false
590
+ "type": "boolean"
581
591
  },
582
592
  "packageManager": {
583
593
  "type": "string",
@@ -1142,7 +1152,8 @@
1142
1152
  {
1143
1153
  "type": "string"
1144
1154
  }
1145
- ]
1155
+ ],
1156
+ "default": 4294967296
1146
1157
  },
1147
1158
  "maxYoungGeneration": {
1148
1159
  "anyOf": [
@@ -1153,7 +1164,20 @@
1153
1164
  {
1154
1165
  "type": "string"
1155
1166
  }
1156
- ]
1167
+ ],
1168
+ "default": 134217728
1169
+ },
1170
+ "codeRangeSize": {
1171
+ "anyOf": [
1172
+ {
1173
+ "type": "number",
1174
+ "minimum": 0
1175
+ },
1176
+ {
1177
+ "type": "string"
1178
+ }
1179
+ ],
1180
+ "default": 268435456
1157
1181
  }
1158
1182
  },
1159
1183
  "additionalProperties": false
@@ -1923,7 +1947,7 @@
1923
1947
  "default": {}
1924
1948
  },
1925
1949
  "ssr": {
1926
- "oneOf": [
1950
+ "anyOf": [
1927
1951
  {
1928
1952
  "type": "object",
1929
1953
  "properties": {
@@ -1953,6 +1977,38 @@
1953
1977
  }
1954
1978
  ],
1955
1979
  "default": false
1980
+ },
1981
+ "notFoundHandler": {
1982
+ "anyOf": [
1983
+ {
1984
+ "type": "boolean"
1985
+ },
1986
+ {
1987
+ "type": "string"
1988
+ },
1989
+ {
1990
+ "type": "object",
1991
+ "properties": {
1992
+ "enabled": {
1993
+ "type": "boolean"
1994
+ },
1995
+ "path": {
1996
+ "type": "string",
1997
+ "default": "index.html"
1998
+ },
1999
+ "contentType": {
2000
+ "type": "string",
2001
+ "default": "text/html; charset=utf-8"
2002
+ },
2003
+ "statusCode": {
2004
+ "type": "number",
2005
+ "default": 200
2006
+ }
2007
+ },
2008
+ "additionalProperties": false
2009
+ }
2010
+ ],
2011
+ "default": false
1956
2012
  }
1957
2013
  },
1958
2014
  "default": {},