datatruck 0.23.2 → 0.24.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/CHANGELOG.md +14 -0
- package/config.schema.json +6 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# datatruck
|
|
2
2
|
|
|
3
|
+
## 0.24.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`f1615b2`](https://github.com/swordev/datatruck/commit/f1615b216cf635bd2c08d68bad818d50855f314b)]:
|
|
8
|
+
- @datatruck/cli@0.24.0
|
|
9
|
+
|
|
10
|
+
## 0.23.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`ea3cbc9`](https://github.com/swordev/datatruck/commit/ea3cbc98aee49151bd1b9422a2c7dadb29479751)]:
|
|
15
|
+
- @datatruck/cli@0.23.3
|
|
16
|
+
|
|
3
17
|
## 0.23.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/config.schema.json
CHANGED
|
@@ -479,9 +479,6 @@
|
|
|
479
479
|
"items": {
|
|
480
480
|
"type": "object",
|
|
481
481
|
"additionalProperties": false,
|
|
482
|
-
"required": [
|
|
483
|
-
"include"
|
|
484
|
-
],
|
|
485
482
|
"properties": {
|
|
486
483
|
"name": {
|
|
487
484
|
"type": "string"
|
|
@@ -1197,6 +1194,12 @@
|
|
|
1197
1194
|
}
|
|
1198
1195
|
]
|
|
1199
1196
|
},
|
|
1197
|
+
"vars": {
|
|
1198
|
+
"type": "object",
|
|
1199
|
+
"patternProperties": {
|
|
1200
|
+
".+": {}
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1200
1203
|
"env": {
|
|
1201
1204
|
"type": "object",
|
|
1202
1205
|
"patternProperties": {
|