@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.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. 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.6.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.6.0",
20
- "@toa.io/generic": "0.6.0",
21
- "@toa.io/schema": "0.6.0",
22
- "@toa.io/yaml": "0.6.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": "a807d9906db194f5851613a1ead5450d277f4939"
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
- properties:
107
- foo:
108
- type: string
109
- default: 'baz'
110
- bar:
111
- type: number
112
- required: [foo]
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
- properties:
138
- foo:
139
- type: string
140
- default: baz
141
- bar:
142
- type: number
143
- default: 1
144
- additionalProperties: false
145
- required: [foo, bar]
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