Skip to content

Commit 6df401e

Browse files
committed
update builder dependency
1 parent bd26122 commit 6df401e

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

lib/fxp.d.cts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,13 @@ type XmlBuilderOptions = {
514514

515515

516516
oneListGroup?: boolean;
517+
518+
/**
519+
* Maximum number of nested tags
520+
*
521+
* Defaults to `100`
522+
*/
523+
maxNestedTags?: number;
517524
};
518525

519526
type ESchema = string | object | Array<string | object>;

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
}
8888
],
8989
"dependencies": {
90-
"fast-xml-builder": "^1.1.3",
90+
"fast-xml-builder": "^1.1.4",
9191
"path-expression-matcher": "^1.1.3",
9292
"strnum": "^2.1.2"
9393
}

src/fxp.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,13 @@ export type XmlBuilderOptions = {
516516

517517

518518
oneListGroup?: boolean;
519+
520+
/**
521+
* Maximum number of nested tags
522+
*
523+
* Defaults to `100`
524+
*/
525+
maxNestedTags?: number;
519526
};
520527

521528
type ESchema = string | object | Array<string | object>;

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2118,10 +2118,10 @@ fast-uri@^3.0.1:
21182118
resolved "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz"
21192119
integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==
21202120

2121-
fast-xml-builder@^1.1.3:
2122-
version "1.1.3"
2123-
resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.3.tgz"
2124-
integrity sha512-1o60KoFw2+LWKQu3IdcfcFlGTW4dpqEWmjhYec6H82AYZU2TVBXep6tMl8Z1Y+wM+ZrzCwe3BZ9Vyd9N2rIvmg==
2121+
fast-xml-builder@^1.1.4:
2122+
version "1.1.4"
2123+
resolved "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.1.4.tgz"
2124+
integrity sha512-f2jhpN4Eccy0/Uz9csxh3Nu6q4ErKxf0XIsasomfOihuSUa3/xw6w8dnOtCDgEItQFJG8KyXPzQXzcODDrrbOg==
21252125
dependencies:
21262126
path-expression-matcher "^1.1.3"
21272127

0 commit comments

Comments
 (0)