0.1.0 • Published 7 years ago

gulp-properties-to-object v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

gulp-properties-to-object

Parse properties files and save in memory(object)

Install

npm install  gulp-properties-to-object

Usage

const toObject = require("gulp-properties-to-object");
var db = {};

gulp.src("./src/*.properties")
    .pipe(toObject(db))
    .on('finish', function () {
      console.log('__FINISH__', db);
    });

TODO

  • Trim spaces
  • Stream support
  • Export JSON
  • Add benchmark
  • Add Travis
  • Add to Coveralls.io
  • Add to Depstat

License

MIT License