v1.3.0
What's Changed
- Issue #4 - External file support
- Issue #10 - New command suite:list
- Issue #12 - Provide JSON Schema for suite definition
Full Changelog: v1.2.0...v1.3.0
Sorry for that, but the „External file support” feature uses a different configuration schema.
old:
{
"composer-suite": {
"my_suite_01": [
{
"type": "prepend",
"config": {
"parents": ["foo"],
"items": {
"bar": 42
}
}
}
]
}
}
new:
{
"composer-suite": {
"my_suite_01": {
"description": "my description",
"actions": [
{
"type": "prepend",
"config": {
"parents": ["foo"],
"items": {
"bar": 42
}
}
}
]
}
}
}