Closed se-panfilov closed 9 years ago
All constants now is a single line, but it's little bit hard to track changes in config if it little more deeper:
Json file:
{ "ACTIONS": { "list": { "click": { "description": "just a click", "params": { "some": null, "another": false } } ... }
What we have now:
.constant('ACTIONS', {"list":{"click":{"description": "just a click","params":{"some": null,"another": false}}}})
What i'm expext:
.constant('ACTIONS', { "list": { "click": { "description": "just a click", "params": { "some": null, "another": false } },
Added PR for this issue: https://github.com/ajwhite/gulp-ng-config/pull/27
Closed in #27
All constants now is a single line, but it's little bit hard to track changes in config if it little more deeper:
Json file:
What we have now:
What i'm expext: