vue-i18n-extract-plugin 1.0.68 → 1.0.69

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.
Files changed (2) hide show
  1. package/lib/extract.js +5 -1
  2. package/package.json +1 -1
package/lib/extract.js CHANGED
@@ -501,7 +501,11 @@ function processVueFile(code, options) {
501
501
  return {
502
502
  changed: true,
503
503
  code: code
504
- .replace(scriptContent, padEmptyLine(transformedScript))
504
+ .replace(
505
+ scriptContent,
506
+ padEmptyLine(transformedScript.replaceAll("$", "┇┇┇"))
507
+ )
508
+ .replaceAll("┇┇┇", "$")
505
509
  .replace(templateContent, padEmptyLine(transformedTemplate))
506
510
  };
507
511
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue-i18n-extract-plugin",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "main": "lib/index.js",
5
5
  "types": "types/index.d.ts",
6
6
  "bin": {