@platformatic/vite 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 CHANGED
@@ -242,6 +242,7 @@ export interface PlatformaticViteConfig {
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 PlatformaticViteConfig {
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/vite",
3
- "version": "3.30.0",
3
+ "version": "3.32.0-alpha.0",
4
4
  "description": "Platformatic Vite Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,9 +18,9 @@
18
18
  "@fastify/static": "^8.0.0",
19
19
  "fastify": "^5.7.0",
20
20
  "semver": "^7.6.3",
21
- "@platformatic/basic": "3.30.0",
22
- "@platformatic/foundation": "3.30.0",
23
- "@platformatic/node": "3.30.0"
21
+ "@platformatic/foundation": "3.32.0-alpha.0",
22
+ "@platformatic/basic": "3.32.0-alpha.0",
23
+ "@platformatic/node": "3.32.0-alpha.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "cleaner-spec-reporter": "^0.5.0",
@@ -32,8 +32,8 @@
32
32
  "typescript": "^5.5.4",
33
33
  "vite": "^7.1.4",
34
34
  "ws": "^8.18.0",
35
- "@platformatic/gateway": "3.30.0",
36
- "@platformatic/service": "3.30.0"
35
+ "@platformatic/service": "3.32.0-alpha.0",
36
+ "@platformatic/gateway": "3.32.0-alpha.0"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/vite/3.30.0.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/vite/3.32.0-alpha.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Vite 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