@toa.io/extensions.configuration 0.6.0 → 0.7.0-dev.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.
- package/package.json +6 -6
- package/readme.md +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/extensions.configuration",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-dev.1",
|
|
4
4
|
"description": "Toa Configuration",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@toa.io/core": "0.
|
|
20
|
-
"@toa.io/generic": "0.
|
|
21
|
-
"@toa.io/schema": "0.
|
|
22
|
-
"@toa.io/yaml": "0.
|
|
19
|
+
"@toa.io/core": "0.7.0-dev.1",
|
|
20
|
+
"@toa.io/generic": "0.7.0-dev.1",
|
|
21
|
+
"@toa.io/schema": "0.7.0-dev.1",
|
|
22
|
+
"@toa.io/yaml": "0.7.0-dev.1",
|
|
23
23
|
"clone-deep": "4.0.1"
|
|
24
24
|
},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "1ebdef6733499671422b624ee4e11ab4aa5dd21a"
|
|
26
26
|
}
|
package/readme.md
CHANGED
|
@@ -102,14 +102,14 @@ name: dummy
|
|
|
102
102
|
namespace: dummies
|
|
103
103
|
|
|
104
104
|
extensions:
|
|
105
|
-
@toa.io/extensions.configuration:
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
105
|
+
"@toa.io/extensions.configuration":
|
|
106
|
+
properties:
|
|
107
|
+
foo:
|
|
108
|
+
type: string
|
|
109
|
+
default: 'baz'
|
|
110
|
+
bar:
|
|
111
|
+
type: number
|
|
112
|
+
required: [foo]
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
### Concise Declaration
|
|
@@ -133,16 +133,16 @@ configuration:
|
|
|
133
133
|
```yaml
|
|
134
134
|
# component.toa.yaml
|
|
135
135
|
extensions:
|
|
136
|
-
@toa.io/extensions.configuration:
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
136
|
+
"@toa.io/extensions.configuration":
|
|
137
|
+
properties:
|
|
138
|
+
foo:
|
|
139
|
+
type: string
|
|
140
|
+
default: baz
|
|
141
|
+
bar:
|
|
142
|
+
type: number
|
|
143
|
+
default: 1
|
|
144
|
+
additionalProperties: false
|
|
145
|
+
required: [foo, bar]
|
|
146
146
|
```
|
|
147
147
|
|
|
148
148
|
## Context Configuration
|