sk-i18n-webpack-plugin
v0.0.2
Published
Generates hash i18n json file by webpack bundle
Downloads
3
Maintainers
Readme
# for webpack 4+
npm install --save-dev sk-i18n-webpack-plugin
: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']
})
]
};
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|