Releases: wandeber/agnese
Releases · wandeber/agnese
v0.6.3
Update version and Quara.
v0.5.5
Allow (again) defining map info before preprocessor manager.
v0.5.4
- Value is now always passed as the second parameter to preprocessors. Even when it is undefined.
- Preprocessor's schema fixed.
v0.5.2
Now you can use JSON schemas with VSCode to enable autocompletion and validation! 💪
JSON:
{
"$schema": "node_modules/agnese/schema/index.json",
"value": {
"type": "Integer",
"fromPath": "characteristics.age"
}
}
YAML:
You need to install the YAML extension.
# yaml-language-server: $schema=node_modules/agnese/schema/index.json
type: Object
fields:
- name: parent
value:
default: Son Goku
v0.4.0
Now preprocessors allows to define an array of arguments with all the same features as FieldValue: default, fromPath, quara... ^^ Things like:
type: Integer
preprocessor:
name: sum
args:
- fromPath: characteristics.height
- default: 14
v0.3.1
Update vulnerable dependencies.
v0.3.0
Add value to switch and switch to value. SwitchValue.branches depreceted.
v0.2.1
Fix to make static certain Agnese members.
v0.2.0
- Required Node version reduced to 10.
- Allow traditional node require without ".default".
v0.1.0
Extend iterator to generate objects with custom property names.