@platformatic/composer 3.0.0-alpha.6 → 3.0.0-alpha.8
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/package.json +4 -4
- package/schema.json +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.8",
|
|
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.
|
|
26
|
-
"@platformatic/gateway": "3.0.0-alpha.
|
|
25
|
+
"@platformatic/foundation": "3.0.0-alpha.8",
|
|
26
|
+
"@platformatic/gateway": "3.0.0-alpha.8"
|
|
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 &&
|
|
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.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.0.0-alpha.8.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": {
|