webpack-extract-translation-keys-plugin
Advanced tools
Comparing version 5.0.0 to 5.0.1
{ | ||
"name": "webpack-extract-translation-keys-plugin", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"description": "Webpack plugin to extract list of used translation keys from included modules.", | ||
@@ -33,2 +33,3 @@ "main": "index.js", | ||
"devDependencies": { | ||
"@types/webpack": "^4.4.22", | ||
"bondjs": "^1.2.2", | ||
@@ -35,0 +36,0 @@ "eslint": "^5.2.0", |
@@ -88,6 +88,6 @@ # Webpack Extract Translation Keys Plugin | ||
In order to be able to map back to the original translation key, the plugin outputs mapping object with keys being mangle keys and the values being the original ones: | ||
In order to be able to map back to the original translation key, the plugin outputs mapping object with keys being original keys and the values being the mangled ones: | ||
```json | ||
{" ": "translation-key-1", "!": "translation-key-2"} | ||
{ "translation-key-1": " ", "translation-key-2": "!" } | ||
``` | ||
@@ -94,0 +94,0 @@ |
16413
7