1.0.0 • Published 6 years ago

ini-webpack-plugin v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

ini-webpack-plugin

ini file writer plugin for Webpack.

write an object of data to an ini file to be included in back end services

Setup

npm i --D ini-webpack-plugin

Example

...
const IniWebpackPlugin = require("ini-webpack-plugin");

const iniPlugin = new IniWebpackPlugin(options);

module.exports = {
  ...
  plugins: [
    iniPlugin
  ]
};

Options:

options and default values:

  • path: './'
  • hashValue: 'hash'
  • filename: 'build.ini'
  • values: { 'hash' : bundleHash }