broccoli-java-properties-to-object
v1.1.0
Published
Broccoli preprocessor for properties files
Readme
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": { ... } };