1.0.4 • Published 5 years ago

properties-2-json-webpack-plugin-webpack-4 v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Properties2JsonPlugin

Webpack plugin for converting .properties files into .json file

Installation

npm install properties-2-json-webpack-plugin --save-dev

Usage

const Properties2JsonPlugin = require('properties-2-json-webpack-plugin');

module.exports = {
  plugins: [  
    new Properties2JsonPlugin([{
      files: ["**/*_pl.properties"],
      output: 'pl.json'
    }, {
      files: ["**/*_en.properties"],
      output: 'en.json'
    }])
  ]
}

Support options

npm/properties

new Properties2JsonPlugin({
  files: ["**/*_pl.properties"],
  output: 'pl.json',
  options: {
    namespaces: true
  }
})

Tests

npm test

License

MIT License