README
Install
# for webpack 4+
npm install --save-dev sk-i18n-webpack-plugin
Usage
:warning: Since webpack v4
const SKI18NWebpackPlugin = require("sk-i18n-webpack-plugin");
module.exports = {
plugins: [
new SKI18NWebpackPlugin({
folderMapping: {codesAddress: 'codes'},
dist: 'json',
srcs: ['public/json/codes_en_US.json', 'public/json/codesAddress_en_US.json', 'public/json/i18n_en_US.json', 'public/json/i18n_zh_CN.json']
})
]
};
Options
new SKI18NWebpackPlugin(options: object)
Name | Type | Description |
---|---|---|
srcs |
{Array} |
the i18n json files |
dist |
{String} |
output path (Relative to the outputPath) |
folderMapping |
{Object} |
mapping for big code table |
hashAlgorithm |
{String} |
hash algorithm |
hashLength |
{Integer} |
length of hash use in file name |
verbose |
{Boolean} |
log |