1.1.0 • Published 7 years ago

broccoli-java-properties-to-object v1.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

broccoli-java-properties-to-object

Converts java properties files to modules which return the POJO version

Installation

npm install broccoli-java-properties-to-object --save-dev

Usage

var filterProperties = require('broccoli-java-properties-to-object');
tree = filterProperties(tree, options);

All .properties files will be converted to .js files which contain an ES6 module which exports the result

export default { "my-key": { ... } };