@platformatic/astro 3.0.0-rc.1 → 3.0.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/lib/capability.js CHANGED
@@ -65,6 +65,8 @@ export class AstroCapability extends BaseCapability {
65
65
 
66
66
  if (this.childManager) {
67
67
  return this.stopCommand()
68
+ } else if (!this.#app) {
69
+ return
68
70
  }
69
71
 
70
72
  return this.isProduction ? this.#app.close() : this.#app.stop()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/astro",
3
- "version": "3.0.0-rc.1",
3
+ "version": "3.0.0",
4
4
  "description": "Platformatic Astro Capability",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,8 +19,8 @@
19
19
  "@fastify/static": "^8.0.0",
20
20
  "fastify": "^5.0.0",
21
21
  "semver": "^7.6.3",
22
- "@platformatic/basic": "3.0.0-rc.1",
23
- "@platformatic/foundation": "3.0.0-rc.1"
22
+ "@platformatic/basic": "3.0.0",
23
+ "@platformatic/foundation": "3.0.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@astrojs/node": "^9.2.0",
@@ -34,8 +34,8 @@
34
34
  "typescript": "^5.5.4",
35
35
  "vite": "^5.4.4",
36
36
  "ws": "^8.18.0",
37
- "@platformatic/gateway": "3.0.0-rc.1",
38
- "@platformatic/service": "3.0.0-rc.1"
37
+ "@platformatic/gateway": "3.0.0",
38
+ "@platformatic/service": "3.0.0"
39
39
  },
40
40
  "engines": {
41
41
  "node": ">=22.18.0"
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/astro/3.0.0-rc.1.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/astro/3.0.0.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Astro Config",
5
5
  "type": "object",