@platformatic/composer 3.0.5 → 3.1.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/package.json +4 -4
- package/schema.json +14 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/composer",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"neostandard": "^0.12.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@platformatic/
|
|
26
|
-
"@platformatic/
|
|
25
|
+
"@platformatic/gateway": "3.1.0",
|
|
26
|
+
"@platformatic/foundation": "3.1.0"
|
|
27
27
|
},
|
|
28
28
|
"engines": {
|
|
29
|
-
"node": ">=22.
|
|
29
|
+
"node": ">=22.19.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",
|
package/schema.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.0.
|
|
2
|
+
"$id": "https://schemas.platformatic.dev/@platformatic/composer/3.1.0.json",
|
|
3
3
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
4
4
|
"title": "Platformatic Composer Config",
|
|
5
5
|
"type": "object",
|
|
@@ -1671,8 +1671,19 @@
|
|
|
1671
1671
|
}
|
|
1672
1672
|
]
|
|
1673
1673
|
},
|
|
1674
|
-
"
|
|
1675
|
-
|
|
1674
|
+
"plugins": {
|
|
1675
|
+
"type": "array",
|
|
1676
|
+
"items": {
|
|
1677
|
+
"anyOf": [
|
|
1678
|
+
{
|
|
1679
|
+
"type": "string",
|
|
1680
|
+
"resolvePath": true
|
|
1681
|
+
}
|
|
1682
|
+
]
|
|
1683
|
+
}
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
"additionalProperties": false
|
|
1676
1687
|
}
|
|
1677
1688
|
]
|
|
1678
1689
|
},
|