1.0.4 • Published 6 years ago
properties-2-json-webpack-plugin-webpack-4 v1.0.4
Properties2JsonPlugin
Webpack plugin for converting .properties files into .json file
Installation
npm install properties-2-json-webpack-plugin --save-devUsage
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
new Properties2JsonPlugin({
  files: ["**/*_pl.properties"],
  output: 'pl.json',
  options: {
    namespaces: true
  }
})Tests
npm testLicense
MIT License
1.0.4
6 years ago