-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
Currently in the exported json the variable name is called variable please rename it to "name"
{
"fonts": [
{ "variable": "$font-size", "value": "16px", "compiledValue": "16px" },
{ "variable": "$font-color", "value": "$brand-gray-medium", "compiledValue":"#d6d6d6" }
]
}We want it to be:
{
"fonts": [
{ "name": "$font-size", "value": "16px", "compiledValue": "16px" },
{ "name": "$font-color", "value": "$brand-gray-medium", "compiledValue":"#d6d6d6" }
]
}Don't forget to update:
- source code: Rename 'variable' to 'name' in source code and unit tests #36
- unit tests: Rename 'variable' to 'name' in source code and unit tests #36
- documentation: Update README.md #29
- examples: Update annotations.json #22, Update array.json #24, Update maps-array.json #25, Update maps-object.json #26, Update mixins.json #27, Update structured-object.json #28