@platformatic/composer 3.0.0-alpha.6 → 3.0.0-rc.1

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 (2) hide show
  1. package/package.json +4 -4
  2. package/schema.json +12 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/composer",
3
- "version": "3.0.0-alpha.6",
3
+ "version": "3.0.0-rc.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -22,15 +22,15 @@
22
22
  "neostandard": "^0.12.0"
23
23
  },
24
24
  "dependencies": {
25
- "@platformatic/foundation": "3.0.0-alpha.6",
26
- "@platformatic/gateway": "3.0.0-alpha.6"
25
+ "@platformatic/foundation": "3.0.0-rc.1",
26
+ "@platformatic/gateway": "3.0.0-rc.1"
27
27
  },
28
28
  "engines": {
29
29
  "node": ">=22.18.0"
30
30
  },
31
31
  "scripts": {
32
32
  "test": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js",
33
- "prebuild": "cd ../gateway && pnpm run build",
33
+ "prebuild": "cd ../gateway && npm run build",
34
34
  "build": "node scripts/schema.js",
35
35
  "lint": "eslint"
36
36
  }
package/schema.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$id": "https://schemas.platformatic.dev/@platformatic/composer/3.0.0-alpha.6.json",
2
+ "$id": "https://schemas.platformatic.dev/@platformatic/composer/3.0.0-rc.1.json",
3
3
  "$schema": "http://json-schema.org/draft-07/schema#",
4
4
  "title": "Platformatic Composer Config",
5
5
  "type": "object",
@@ -835,6 +835,13 @@
835
835
  },
836
836
  "additionalProperties": false
837
837
  },
838
+ "dependencies": {
839
+ "type": "array",
840
+ "items": {
841
+ "type": "string"
842
+ },
843
+ "default": []
844
+ },
838
845
  "arguments": {
839
846
  "type": "array",
840
847
  "items": {
@@ -1216,6 +1223,10 @@
1216
1223
  }
1217
1224
  ]
1218
1225
  },
1226
+ "exitOnUnhandledErrors": {
1227
+ "default": true,
1228
+ "type": "boolean"
1229
+ },
1219
1230
  "gracefulShutdown": {
1220
1231
  "type": "object",
1221
1232
  "properties": {