@tinacms/schema-tools 2.3.0 → 2.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/types/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -727,6 +727,13 @@ interface BaseCollection {
|
|
|
727
727
|
* The delimiters used to parse the frontmatter.
|
|
728
728
|
*/
|
|
729
729
|
frontmatterDelimiters?: [string, string] | string;
|
|
730
|
+
/**
|
|
731
|
+
* The max line width used when serializing frontmatter for markdown and for content in YAML files.
|
|
732
|
+
* This sets the line length that reformats long strings with folded scalar syntax (>-).
|
|
733
|
+
* Setting to -1 disables line wrapping.
|
|
734
|
+
* @default -1
|
|
735
|
+
*/
|
|
736
|
+
yamlMaxLineWidth?: number;
|
|
730
737
|
match?: {
|
|
731
738
|
include?: string;
|
|
732
739
|
exclude?: string;
|