vue-i18n-extract-plugin 1.0.53 → 1.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/visitors.js +1 -1
- package/package.json +1 -1
package/lib/visitors.js
CHANGED
|
@@ -337,7 +337,7 @@ function createI18nVisitor(option, i18nMap) {
|
|
|
337
337
|
function createI18nPlugin(option, i18nMap) {
|
|
338
338
|
return () => {
|
|
339
339
|
return {
|
|
340
|
-
visitor: createI18nVisitor(option, i18nMap)
|
|
340
|
+
visitor: createI18nVisitor({ ...option, keepRaw: false }, i18nMap)
|
|
341
341
|
};
|
|
342
342
|
};
|
|
343
343
|
}
|