@platformatic/astro 3.49.1 → 3.50.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
@@ -122,6 +122,7 @@ export interface PlatformaticAstroConfig {
122
122
  entrypointPort?: number;
123
123
  changeDirectoryBeforeExecution?: boolean;
124
124
  preferLocalCommands?: boolean;
125
+ processSpawner?: string;
125
126
  };
126
127
  runtime?: {
127
128
  preload?: string | string[];
package/lib/capability.js CHANGED
@@ -18,7 +18,7 @@ import { dirname, resolve } from 'node:path'
18
18
  import { satisfies } from 'semver'
19
19
  import { version } from './schema.js'
20
20
 
21
- export const supportedVersions = '^4.0.0 || ^5.0.0'
21
+ export const supportedVersions = '^6.0.0'
22
22
 
23
23
  export class AstroCapability extends BaseCapability {
24
24
  #astro
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/astro",
3
- "version": "3.49.1",
3
+ "version": "3.50.0",
4
4
  "description": "Platformatic Astro Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,14 +19,14 @@
19
19
  "@fastify/static": "^8.0.0",
20
20
  "fastify": "^5.7.0",
21
21
  "semver": "^7.6.3",
22
- "@platformatic/basic": "3.49.1",
23
- "@platformatic/foundation": "3.49.1"
22
+ "@platformatic/basic": "3.50.0",
23
+ "@platformatic/foundation": "3.50.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@astrojs/node": "^9.2.0",
26
+ "@astrojs/node": "^10.0.0",
27
27
  "@types/react": "^19.1.11",
28
28
  "@types/react-dom": "^19.1.7",
29
- "astro": "^5.7.1",
29
+ "astro": "^6.1.4",
30
30
  "cleaner-spec-reporter": "^0.5.0",
31
31
  "eslint": "9",
32
32
  "json-schema-to-typescript": "^15.0.1",
@@ -35,8 +35,8 @@
35
35
  "tstyche": "^6.2.0",
36
36
  "vite": "^7.0.0",
37
37
  "ws": "^8.18.0",
38
- "@platformatic/gateway": "3.49.1",
39
- "@platformatic/service": "3.49.1"
38
+ "@platformatic/gateway": "3.50.0",
39
+ "@platformatic/service": "3.50.0"
40
40
  },
41
41
  "engines": {
42
42
  "node": ">=22.19.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/astro/3.49.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/astro/3.50.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Astro Config",
5
5
  "type": "object",
@@ -393,6 +393,9 @@
393
393
  "preferLocalCommands": {
394
394
  "type": "boolean",
395
395
  "default": true
396
+ },
397
+ "processSpawner": {
398
+ "type": "string"
396
399
  }
397
400
  },
398
401
  "additionalProperties": false,