@lingui/format-po 6.2.0 → 6.4.0

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/dist/po.d.mts CHANGED
@@ -72,7 +72,7 @@ type PoFormatterOptions = {
72
72
  * When a string exceeds this length, it will be split across multiple lines.
73
73
  * Set to `0` to disable folding (strings will only break on actual newlines).
74
74
  *
75
- * @default 80
75
+ * @default 0
76
76
  */
77
77
  foldLength?: number;
78
78
  /**
package/dist/po.mjs CHANGED
@@ -144,6 +144,7 @@ function formatter(options = {}) {
144
144
  options = {
145
145
  origins: true,
146
146
  lineNumbers: true,
147
+ foldLength: 0,
147
148
  ...options
148
149
  };
149
150
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingui/format-po",
3
- "version": "6.2.0",
3
+ "version": "6.4.0",
4
4
  "description": "Gettext PO formatter for Lingui message catalogs",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -42,8 +42,8 @@
42
42
  "dist/"
43
43
  ],
44
44
  "dependencies": {
45
- "@lingui/conf": "6.2.0",
46
- "@lingui/message-utils": "6.2.0",
45
+ "@lingui/conf": "6.4.0",
46
+ "@lingui/message-utils": "6.4.0",
47
47
  "pofile-ts": "^4.0.3"
48
48
  },
49
49
  "devDependencies": {
@@ -54,5 +54,5 @@
54
54
  "unbuild": {
55
55
  "declaration": "node16"
56
56
  },
57
- "gitHead": "9f2a37bc4a9e3de323b4b9094898e8f05cf05956"
57
+ "gitHead": "e8657bf8cbe6e8abc62a46a24e018ff9812918be"
58
58
  }