@windrun-huaiin/dev-scripts 13.1.0 → 14.1.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/_virtual/_commonjsHelpers.js +7 -0
- package/dist/_virtual/_commonjsHelpers.mjs +5 -0
- package/dist/_virtual/index.js +11 -0
- package/dist/_virtual/index.mjs +7 -0
- package/dist/_virtual/re.js +5 -0
- package/dist/_virtual/re.mjs +3 -0
- package/dist/cli.js +33 -1
- package/dist/cli.mjs +33 -1
- package/dist/commands/diaomao-update.d.ts +3 -0
- package/dist/commands/diaomao-update.d.ts.map +1 -0
- package/dist/commands/diaomao-update.js +304 -0
- package/dist/commands/diaomao-update.mjs +302 -0
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +9 -0
- package/dist/config/index.mjs +9 -0
- package/dist/config/schema.d.ts +5 -0
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +5 -0
- package/dist/config/schema.mjs +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.js +161 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.mjs +159 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.js +576 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.mjs +574 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.js +350 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.mjs +348 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.js +72 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.mjs +70 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.js +77 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.mjs +75 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.js +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.mjs +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.js +73 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.mjs +71 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.js +34 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.mjs +32 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.js +31 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.mjs +29 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.js +25 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.mjs +23 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.js +144 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.mjs +142 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.js +48 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.mjs +46 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.js +40 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.mjs +38 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.js +53 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.mjs +51 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.js +28 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.mjs +26 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.js +239 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.mjs +237 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.js +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.mjs +17 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.js +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.mjs +17 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.js +41 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.mjs +39 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.js +40 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.mjs +38 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.js +78 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.mjs +76 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.js +102 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.mjs +100 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.js +63 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.mjs +61 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.js +265 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.mjs +263 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.js +23 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.mjs +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.js +26 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.js +90 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.mjs +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.js +45 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.mjs +43 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.js +105 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.mjs +102 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.js +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.mjs +86 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.mjs +217 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.js +117 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.mjs +115 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +200 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.mjs +198 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +51 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.mjs +49 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +209 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.mjs +207 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.mjs +223 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.mjs +146 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.js +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.mjs +34 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +28 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.mjs +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.mjs +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.js +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.mjs +13 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.js +337 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.mjs +335 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.js +76 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.mjs +71 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.js +57 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.mjs +55 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.js +90 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.mjs +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.js +178 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.mjs +176 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.js +62 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.mjs +57 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.js +9 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.mjs +7 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.mjs +114 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.js +151 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.mjs +147 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.js +40 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.mjs +38 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.mjs +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.js +27 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.js +147 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.mjs +144 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +115 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.mjs +113 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +65 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.mjs +63 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.js +53 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.mjs +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.js +79 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.mjs +73 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.js +719 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.mjs +717 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.js +41 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.mjs +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.js +969 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.mjs +967 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.js +68 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.mjs +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.js +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.mjs +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.js +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.mjs +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.js +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.mjs +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.js +16 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.mjs +14 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.js +21 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.mjs +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.js +47 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.mjs +43 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.js +42 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.mjs +38 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.js +25 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.mjs +23 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.js +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.mjs +62 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.js +99 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.mjs +96 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +60 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.mjs +58 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +29 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.mjs +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +50 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.mjs +46 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +76 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.mjs +71 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +68 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.mjs +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +77 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.mjs +74 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +82 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.mjs +78 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +41 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.mjs +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +96 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.mjs +93 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.mjs +101 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +151 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.mjs +146 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.js +131 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.mjs +128 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +145 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.mjs +143 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.js +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.mjs +20 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +87 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.mjs +85 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.js +152 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.mjs +150 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.js +338 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.mjs +336 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.js +148 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.mjs +146 -0
- package/package.json +6 -4
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { isNode } from '../nodes/identity.mjs';
|
|
2
|
+
import { createStringifyContext, stringify } from './stringify.mjs';
|
|
3
|
+
import { indentComment, lineComment } from './stringifyComment.mjs';
|
|
4
|
+
|
|
5
|
+
function stringifyDocument(doc, options) {
|
|
6
|
+
const lines = [];
|
|
7
|
+
let hasDirectives = options.directives === true;
|
|
8
|
+
if (options.directives !== false && doc.directives) {
|
|
9
|
+
const dir = doc.directives.toString(doc);
|
|
10
|
+
if (dir) {
|
|
11
|
+
lines.push(dir);
|
|
12
|
+
hasDirectives = true;
|
|
13
|
+
}
|
|
14
|
+
else if (doc.directives.docStart)
|
|
15
|
+
hasDirectives = true;
|
|
16
|
+
}
|
|
17
|
+
if (hasDirectives)
|
|
18
|
+
lines.push('---');
|
|
19
|
+
const ctx = createStringifyContext(doc, options);
|
|
20
|
+
const { commentString } = ctx.options;
|
|
21
|
+
if (doc.commentBefore) {
|
|
22
|
+
if (lines.length !== 1)
|
|
23
|
+
lines.unshift('');
|
|
24
|
+
const cs = commentString(doc.commentBefore);
|
|
25
|
+
lines.unshift(indentComment(cs, ''));
|
|
26
|
+
}
|
|
27
|
+
let chompKeep = false;
|
|
28
|
+
let contentComment = null;
|
|
29
|
+
if (doc.contents) {
|
|
30
|
+
if (isNode(doc.contents)) {
|
|
31
|
+
if (doc.contents.spaceBefore && hasDirectives)
|
|
32
|
+
lines.push('');
|
|
33
|
+
if (doc.contents.commentBefore) {
|
|
34
|
+
const cs = commentString(doc.contents.commentBefore);
|
|
35
|
+
lines.push(indentComment(cs, ''));
|
|
36
|
+
}
|
|
37
|
+
// top-level block scalars need to be indented if followed by a comment
|
|
38
|
+
ctx.forceBlockIndent = !!doc.comment;
|
|
39
|
+
contentComment = doc.contents.comment;
|
|
40
|
+
}
|
|
41
|
+
const onChompKeep = contentComment ? undefined : () => (chompKeep = true);
|
|
42
|
+
let body = stringify(doc.contents, ctx, () => (contentComment = null), onChompKeep);
|
|
43
|
+
if (contentComment)
|
|
44
|
+
body += lineComment(body, '', commentString(contentComment));
|
|
45
|
+
if ((body[0] === '|' || body[0] === '>') &&
|
|
46
|
+
lines[lines.length - 1] === '---') {
|
|
47
|
+
// Top-level block scalars with a preceding doc marker ought to use the
|
|
48
|
+
// same line for their header.
|
|
49
|
+
lines[lines.length - 1] = `--- ${body}`;
|
|
50
|
+
}
|
|
51
|
+
else
|
|
52
|
+
lines.push(body);
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
lines.push(stringify(doc.contents, ctx));
|
|
56
|
+
}
|
|
57
|
+
if (doc.directives?.docEnd) {
|
|
58
|
+
if (doc.comment) {
|
|
59
|
+
const cs = commentString(doc.comment);
|
|
60
|
+
if (cs.includes('\n')) {
|
|
61
|
+
lines.push('...');
|
|
62
|
+
lines.push(indentComment(cs, ''));
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
lines.push(`... ${cs}`);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
lines.push('...');
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
let dc = doc.comment;
|
|
74
|
+
if (dc && chompKeep)
|
|
75
|
+
dc = dc.replace(/^\n+/, '');
|
|
76
|
+
if (dc) {
|
|
77
|
+
if ((!chompKeep || contentComment) && lines[lines.length - 1] !== '')
|
|
78
|
+
lines.push('');
|
|
79
|
+
lines.push(indentComment(commentString(dc), ''));
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
return lines.join('\n') + '\n';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export { stringifyDocument };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
4
|
+
if (typeof value === 'bigint')
|
|
5
|
+
return String(value);
|
|
6
|
+
const num = typeof value === 'number' ? value : Number(value);
|
|
7
|
+
if (!isFinite(num))
|
|
8
|
+
return isNaN(num) ? '.nan' : num < 0 ? '-.inf' : '.inf';
|
|
9
|
+
let n = Object.is(value, -0) ? '-0' : JSON.stringify(value);
|
|
10
|
+
if (!format &&
|
|
11
|
+
minFractionDigits &&
|
|
12
|
+
(!tag || tag === 'tag:yaml.org,2002:float') &&
|
|
13
|
+
/^\d/.test(n)) {
|
|
14
|
+
let i = n.indexOf('.');
|
|
15
|
+
if (i < 0) {
|
|
16
|
+
i = n.length;
|
|
17
|
+
n += '.';
|
|
18
|
+
}
|
|
19
|
+
let d = minFractionDigits - (n.length - i - 1);
|
|
20
|
+
while (d-- > 0)
|
|
21
|
+
n += '0';
|
|
22
|
+
}
|
|
23
|
+
return n;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
exports.stringifyNumber = stringifyNumber;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
function stringifyNumber({ format, minFractionDigits, tag, value }) {
|
|
2
|
+
if (typeof value === 'bigint')
|
|
3
|
+
return String(value);
|
|
4
|
+
const num = typeof value === 'number' ? value : Number(value);
|
|
5
|
+
if (!isFinite(num))
|
|
6
|
+
return isNaN(num) ? '.nan' : num < 0 ? '-.inf' : '.inf';
|
|
7
|
+
let n = Object.is(value, -0) ? '-0' : JSON.stringify(value);
|
|
8
|
+
if (!format &&
|
|
9
|
+
minFractionDigits &&
|
|
10
|
+
(!tag || tag === 'tag:yaml.org,2002:float') &&
|
|
11
|
+
/^\d/.test(n)) {
|
|
12
|
+
let i = n.indexOf('.');
|
|
13
|
+
if (i < 0) {
|
|
14
|
+
i = n.length;
|
|
15
|
+
n += '.';
|
|
16
|
+
}
|
|
17
|
+
let d = minFractionDigits - (n.length - i - 1);
|
|
18
|
+
while (d-- > 0)
|
|
19
|
+
n += '0';
|
|
20
|
+
}
|
|
21
|
+
return n;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { stringifyNumber };
|
package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.js
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var identity = require('../nodes/identity.js');
|
|
4
|
+
var Scalar = require('../nodes/Scalar.js');
|
|
5
|
+
var stringify = require('./stringify.js');
|
|
6
|
+
var stringifyComment = require('./stringifyComment.js');
|
|
7
|
+
|
|
8
|
+
function stringifyPair({ key, value }, ctx, onComment, onChompKeep) {
|
|
9
|
+
const { allNullValues, doc, indent, indentStep, options: { commentString, indentSeq, simpleKeys } } = ctx;
|
|
10
|
+
let keyComment = (identity.isNode(key) && key.comment) || null;
|
|
11
|
+
if (simpleKeys) {
|
|
12
|
+
if (keyComment) {
|
|
13
|
+
throw new Error('With simple keys, key nodes cannot have comments');
|
|
14
|
+
}
|
|
15
|
+
if (identity.isCollection(key) || (!identity.isNode(key) && typeof key === 'object')) {
|
|
16
|
+
const msg = 'With simple keys, collection cannot be used as a key value';
|
|
17
|
+
throw new Error(msg);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
let explicitKey = !simpleKeys &&
|
|
21
|
+
(!key ||
|
|
22
|
+
(keyComment && value == null && !ctx.inFlow) ||
|
|
23
|
+
identity.isCollection(key) ||
|
|
24
|
+
(identity.isScalar(key)
|
|
25
|
+
? key.type === Scalar.Scalar.BLOCK_FOLDED || key.type === Scalar.Scalar.BLOCK_LITERAL
|
|
26
|
+
: typeof key === 'object'));
|
|
27
|
+
ctx = Object.assign({}, ctx, {
|
|
28
|
+
allNullValues: false,
|
|
29
|
+
implicitKey: !explicitKey && (simpleKeys || !allNullValues),
|
|
30
|
+
indent: indent + indentStep
|
|
31
|
+
});
|
|
32
|
+
let keyCommentDone = false;
|
|
33
|
+
let chompKeep = false;
|
|
34
|
+
let str = stringify.stringify(key, ctx, () => (keyCommentDone = true), () => (chompKeep = true));
|
|
35
|
+
if (!explicitKey && !ctx.inFlow && str.length > 1024) {
|
|
36
|
+
if (simpleKeys)
|
|
37
|
+
throw new Error('With simple keys, single line scalar must not span more than 1024 characters');
|
|
38
|
+
explicitKey = true;
|
|
39
|
+
}
|
|
40
|
+
if (ctx.inFlow) {
|
|
41
|
+
if (allNullValues || value == null) {
|
|
42
|
+
if (keyCommentDone && onComment)
|
|
43
|
+
onComment();
|
|
44
|
+
return str === '' ? '?' : explicitKey ? `? ${str}` : str;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
else if ((allNullValues && !simpleKeys) || (value == null && explicitKey)) {
|
|
48
|
+
str = `? ${str}`;
|
|
49
|
+
if (keyComment && !keyCommentDone) {
|
|
50
|
+
str += stringifyComment.lineComment(str, ctx.indent, commentString(keyComment));
|
|
51
|
+
}
|
|
52
|
+
else if (chompKeep && onChompKeep)
|
|
53
|
+
onChompKeep();
|
|
54
|
+
return str;
|
|
55
|
+
}
|
|
56
|
+
if (keyCommentDone)
|
|
57
|
+
keyComment = null;
|
|
58
|
+
if (explicitKey) {
|
|
59
|
+
if (keyComment)
|
|
60
|
+
str += stringifyComment.lineComment(str, ctx.indent, commentString(keyComment));
|
|
61
|
+
str = `? ${str}\n${indent}:`;
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
str = `${str}:`;
|
|
65
|
+
if (keyComment)
|
|
66
|
+
str += stringifyComment.lineComment(str, ctx.indent, commentString(keyComment));
|
|
67
|
+
}
|
|
68
|
+
let vsb, vcb, valueComment;
|
|
69
|
+
if (identity.isNode(value)) {
|
|
70
|
+
vsb = !!value.spaceBefore;
|
|
71
|
+
vcb = value.commentBefore;
|
|
72
|
+
valueComment = value.comment;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
vsb = false;
|
|
76
|
+
vcb = null;
|
|
77
|
+
valueComment = null;
|
|
78
|
+
if (value && typeof value === 'object')
|
|
79
|
+
value = doc.createNode(value);
|
|
80
|
+
}
|
|
81
|
+
ctx.implicitKey = false;
|
|
82
|
+
if (!explicitKey && !keyComment && identity.isScalar(value))
|
|
83
|
+
ctx.indentAtStart = str.length + 1;
|
|
84
|
+
chompKeep = false;
|
|
85
|
+
if (!indentSeq &&
|
|
86
|
+
indentStep.length >= 2 &&
|
|
87
|
+
!ctx.inFlow &&
|
|
88
|
+
!explicitKey &&
|
|
89
|
+
identity.isSeq(value) &&
|
|
90
|
+
!value.flow &&
|
|
91
|
+
!value.tag &&
|
|
92
|
+
!value.anchor) {
|
|
93
|
+
// If indentSeq === false, consider '- ' as part of indentation where possible
|
|
94
|
+
ctx.indent = ctx.indent.substring(2);
|
|
95
|
+
}
|
|
96
|
+
let valueCommentDone = false;
|
|
97
|
+
const valueStr = stringify.stringify(value, ctx, () => (valueCommentDone = true), () => (chompKeep = true));
|
|
98
|
+
let ws = ' ';
|
|
99
|
+
if (keyComment || vsb || vcb) {
|
|
100
|
+
ws = vsb ? '\n' : '';
|
|
101
|
+
if (vcb) {
|
|
102
|
+
const cs = commentString(vcb);
|
|
103
|
+
ws += `\n${stringifyComment.indentComment(cs, ctx.indent)}`;
|
|
104
|
+
}
|
|
105
|
+
if (valueStr === '' && !ctx.inFlow) {
|
|
106
|
+
if (ws === '\n' && valueComment)
|
|
107
|
+
ws = '\n\n';
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
ws += `\n${ctx.indent}`;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
else if (!explicitKey && identity.isCollection(value)) {
|
|
114
|
+
const vs0 = valueStr[0];
|
|
115
|
+
const nl0 = valueStr.indexOf('\n');
|
|
116
|
+
const hasNewline = nl0 !== -1;
|
|
117
|
+
const flow = ctx.inFlow ?? value.flow ?? value.items.length === 0;
|
|
118
|
+
if (hasNewline || !flow) {
|
|
119
|
+
let hasPropsLine = false;
|
|
120
|
+
if (hasNewline && (vs0 === '&' || vs0 === '!')) {
|
|
121
|
+
let sp0 = valueStr.indexOf(' ');
|
|
122
|
+
if (vs0 === '&' &&
|
|
123
|
+
sp0 !== -1 &&
|
|
124
|
+
sp0 < nl0 &&
|
|
125
|
+
valueStr[sp0 + 1] === '!') {
|
|
126
|
+
sp0 = valueStr.indexOf(' ', sp0 + 1);
|
|
127
|
+
}
|
|
128
|
+
if (sp0 === -1 || nl0 < sp0)
|
|
129
|
+
hasPropsLine = true;
|
|
130
|
+
}
|
|
131
|
+
if (!hasPropsLine)
|
|
132
|
+
ws = `\n${ctx.indent}`;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
else if (valueStr === '' || valueStr[0] === '\n') {
|
|
136
|
+
ws = '';
|
|
137
|
+
}
|
|
138
|
+
str += ws + valueStr;
|
|
139
|
+
if (ctx.inFlow) {
|
|
140
|
+
if (valueCommentDone && onComment)
|
|
141
|
+
onComment();
|
|
142
|
+
}
|
|
143
|
+
else if (valueComment && !valueCommentDone) {
|
|
144
|
+
str += stringifyComment.lineComment(str, ctx.indent, commentString(valueComment));
|
|
145
|
+
}
|
|
146
|
+
else if (chompKeep && onChompKeep) {
|
|
147
|
+
onChompKeep();
|
|
148
|
+
}
|
|
149
|
+
return str;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
exports.stringifyPair = stringifyPair;
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
import { isNode, isCollection, isScalar, isSeq } from '../nodes/identity.mjs';
|
|
2
|
+
import { Scalar } from '../nodes/Scalar.mjs';
|
|
3
|
+
import { stringify } from './stringify.mjs';
|
|
4
|
+
import { lineComment, indentComment } from './stringifyComment.mjs';
|
|
5
|
+
|
|
6
|
+
function stringifyPair({ key, value }, ctx, onComment, onChompKeep) {
|
|
7
|
+
const { allNullValues, doc, indent, indentStep, options: { commentString, indentSeq, simpleKeys } } = ctx;
|
|
8
|
+
let keyComment = (isNode(key) && key.comment) || null;
|
|
9
|
+
if (simpleKeys) {
|
|
10
|
+
if (keyComment) {
|
|
11
|
+
throw new Error('With simple keys, key nodes cannot have comments');
|
|
12
|
+
}
|
|
13
|
+
if (isCollection(key) || (!isNode(key) && typeof key === 'object')) {
|
|
14
|
+
const msg = 'With simple keys, collection cannot be used as a key value';
|
|
15
|
+
throw new Error(msg);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
let explicitKey = !simpleKeys &&
|
|
19
|
+
(!key ||
|
|
20
|
+
(keyComment && value == null && !ctx.inFlow) ||
|
|
21
|
+
isCollection(key) ||
|
|
22
|
+
(isScalar(key)
|
|
23
|
+
? key.type === Scalar.BLOCK_FOLDED || key.type === Scalar.BLOCK_LITERAL
|
|
24
|
+
: typeof key === 'object'));
|
|
25
|
+
ctx = Object.assign({}, ctx, {
|
|
26
|
+
allNullValues: false,
|
|
27
|
+
implicitKey: !explicitKey && (simpleKeys || !allNullValues),
|
|
28
|
+
indent: indent + indentStep
|
|
29
|
+
});
|
|
30
|
+
let keyCommentDone = false;
|
|
31
|
+
let chompKeep = false;
|
|
32
|
+
let str = stringify(key, ctx, () => (keyCommentDone = true), () => (chompKeep = true));
|
|
33
|
+
if (!explicitKey && !ctx.inFlow && str.length > 1024) {
|
|
34
|
+
if (simpleKeys)
|
|
35
|
+
throw new Error('With simple keys, single line scalar must not span more than 1024 characters');
|
|
36
|
+
explicitKey = true;
|
|
37
|
+
}
|
|
38
|
+
if (ctx.inFlow) {
|
|
39
|
+
if (allNullValues || value == null) {
|
|
40
|
+
if (keyCommentDone && onComment)
|
|
41
|
+
onComment();
|
|
42
|
+
return str === '' ? '?' : explicitKey ? `? ${str}` : str;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
else if ((allNullValues && !simpleKeys) || (value == null && explicitKey)) {
|
|
46
|
+
str = `? ${str}`;
|
|
47
|
+
if (keyComment && !keyCommentDone) {
|
|
48
|
+
str += lineComment(str, ctx.indent, commentString(keyComment));
|
|
49
|
+
}
|
|
50
|
+
else if (chompKeep && onChompKeep)
|
|
51
|
+
onChompKeep();
|
|
52
|
+
return str;
|
|
53
|
+
}
|
|
54
|
+
if (keyCommentDone)
|
|
55
|
+
keyComment = null;
|
|
56
|
+
if (explicitKey) {
|
|
57
|
+
if (keyComment)
|
|
58
|
+
str += lineComment(str, ctx.indent, commentString(keyComment));
|
|
59
|
+
str = `? ${str}\n${indent}:`;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
str = `${str}:`;
|
|
63
|
+
if (keyComment)
|
|
64
|
+
str += lineComment(str, ctx.indent, commentString(keyComment));
|
|
65
|
+
}
|
|
66
|
+
let vsb, vcb, valueComment;
|
|
67
|
+
if (isNode(value)) {
|
|
68
|
+
vsb = !!value.spaceBefore;
|
|
69
|
+
vcb = value.commentBefore;
|
|
70
|
+
valueComment = value.comment;
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
vsb = false;
|
|
74
|
+
vcb = null;
|
|
75
|
+
valueComment = null;
|
|
76
|
+
if (value && typeof value === 'object')
|
|
77
|
+
value = doc.createNode(value);
|
|
78
|
+
}
|
|
79
|
+
ctx.implicitKey = false;
|
|
80
|
+
if (!explicitKey && !keyComment && isScalar(value))
|
|
81
|
+
ctx.indentAtStart = str.length + 1;
|
|
82
|
+
chompKeep = false;
|
|
83
|
+
if (!indentSeq &&
|
|
84
|
+
indentStep.length >= 2 &&
|
|
85
|
+
!ctx.inFlow &&
|
|
86
|
+
!explicitKey &&
|
|
87
|
+
isSeq(value) &&
|
|
88
|
+
!value.flow &&
|
|
89
|
+
!value.tag &&
|
|
90
|
+
!value.anchor) {
|
|
91
|
+
// If indentSeq === false, consider '- ' as part of indentation where possible
|
|
92
|
+
ctx.indent = ctx.indent.substring(2);
|
|
93
|
+
}
|
|
94
|
+
let valueCommentDone = false;
|
|
95
|
+
const valueStr = stringify(value, ctx, () => (valueCommentDone = true), () => (chompKeep = true));
|
|
96
|
+
let ws = ' ';
|
|
97
|
+
if (keyComment || vsb || vcb) {
|
|
98
|
+
ws = vsb ? '\n' : '';
|
|
99
|
+
if (vcb) {
|
|
100
|
+
const cs = commentString(vcb);
|
|
101
|
+
ws += `\n${indentComment(cs, ctx.indent)}`;
|
|
102
|
+
}
|
|
103
|
+
if (valueStr === '' && !ctx.inFlow) {
|
|
104
|
+
if (ws === '\n' && valueComment)
|
|
105
|
+
ws = '\n\n';
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
ws += `\n${ctx.indent}`;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
else if (!explicitKey && isCollection(value)) {
|
|
112
|
+
const vs0 = valueStr[0];
|
|
113
|
+
const nl0 = valueStr.indexOf('\n');
|
|
114
|
+
const hasNewline = nl0 !== -1;
|
|
115
|
+
const flow = ctx.inFlow ?? value.flow ?? value.items.length === 0;
|
|
116
|
+
if (hasNewline || !flow) {
|
|
117
|
+
let hasPropsLine = false;
|
|
118
|
+
if (hasNewline && (vs0 === '&' || vs0 === '!')) {
|
|
119
|
+
let sp0 = valueStr.indexOf(' ');
|
|
120
|
+
if (vs0 === '&' &&
|
|
121
|
+
sp0 !== -1 &&
|
|
122
|
+
sp0 < nl0 &&
|
|
123
|
+
valueStr[sp0 + 1] === '!') {
|
|
124
|
+
sp0 = valueStr.indexOf(' ', sp0 + 1);
|
|
125
|
+
}
|
|
126
|
+
if (sp0 === -1 || nl0 < sp0)
|
|
127
|
+
hasPropsLine = true;
|
|
128
|
+
}
|
|
129
|
+
if (!hasPropsLine)
|
|
130
|
+
ws = `\n${ctx.indent}`;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
else if (valueStr === '' || valueStr[0] === '\n') {
|
|
134
|
+
ws = '';
|
|
135
|
+
}
|
|
136
|
+
str += ws + valueStr;
|
|
137
|
+
if (ctx.inFlow) {
|
|
138
|
+
if (valueCommentDone && onComment)
|
|
139
|
+
onComment();
|
|
140
|
+
}
|
|
141
|
+
else if (valueComment && !valueCommentDone) {
|
|
142
|
+
str += lineComment(str, ctx.indent, commentString(valueComment));
|
|
143
|
+
}
|
|
144
|
+
else if (chompKeep && onChompKeep) {
|
|
145
|
+
onChompKeep();
|
|
146
|
+
}
|
|
147
|
+
return str;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
export { stringifyPair };
|