@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,147 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var stringifyCollection = require('../stringify/stringifyCollection.js');
|
|
4
|
+
var addPairToJSMap = require('./addPairToJSMap.js');
|
|
5
|
+
var Collection = require('./Collection.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var Pair = require('./Pair.js');
|
|
8
|
+
var Scalar = require('./Scalar.js');
|
|
9
|
+
|
|
10
|
+
function findPair(items, key) {
|
|
11
|
+
const k = identity.isScalar(key) ? key.value : key;
|
|
12
|
+
for (const it of items) {
|
|
13
|
+
if (identity.isPair(it)) {
|
|
14
|
+
if (it.key === key || it.key === k)
|
|
15
|
+
return it;
|
|
16
|
+
if (identity.isScalar(it.key) && it.key.value === k)
|
|
17
|
+
return it;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
return undefined;
|
|
21
|
+
}
|
|
22
|
+
class YAMLMap extends Collection.Collection {
|
|
23
|
+
static get tagName() {
|
|
24
|
+
return 'tag:yaml.org,2002:map';
|
|
25
|
+
}
|
|
26
|
+
constructor(schema) {
|
|
27
|
+
super(identity.MAP, schema);
|
|
28
|
+
this.items = [];
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A generic collection parsing method that can be extended
|
|
32
|
+
* to other node classes that inherit from YAMLMap
|
|
33
|
+
*/
|
|
34
|
+
static from(schema, obj, ctx) {
|
|
35
|
+
const { keepUndefined, replacer } = ctx;
|
|
36
|
+
const map = new this(schema);
|
|
37
|
+
const add = (key, value) => {
|
|
38
|
+
if (typeof replacer === 'function')
|
|
39
|
+
value = replacer.call(obj, key, value);
|
|
40
|
+
else if (Array.isArray(replacer) && !replacer.includes(key))
|
|
41
|
+
return;
|
|
42
|
+
if (value !== undefined || keepUndefined)
|
|
43
|
+
map.items.push(Pair.createPair(key, value, ctx));
|
|
44
|
+
};
|
|
45
|
+
if (obj instanceof Map) {
|
|
46
|
+
for (const [key, value] of obj)
|
|
47
|
+
add(key, value);
|
|
48
|
+
}
|
|
49
|
+
else if (obj && typeof obj === 'object') {
|
|
50
|
+
for (const key of Object.keys(obj))
|
|
51
|
+
add(key, obj[key]);
|
|
52
|
+
}
|
|
53
|
+
if (typeof schema.sortMapEntries === 'function') {
|
|
54
|
+
map.items.sort(schema.sortMapEntries);
|
|
55
|
+
}
|
|
56
|
+
return map;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Adds a value to the collection.
|
|
60
|
+
*
|
|
61
|
+
* @param overwrite - If not set `true`, using a key that is already in the
|
|
62
|
+
* collection will throw. Otherwise, overwrites the previous value.
|
|
63
|
+
*/
|
|
64
|
+
add(pair, overwrite) {
|
|
65
|
+
let _pair;
|
|
66
|
+
if (identity.isPair(pair))
|
|
67
|
+
_pair = pair;
|
|
68
|
+
else if (!pair || typeof pair !== 'object' || !('key' in pair)) {
|
|
69
|
+
// In TypeScript, this never happens.
|
|
70
|
+
_pair = new Pair.Pair(pair, pair?.value);
|
|
71
|
+
}
|
|
72
|
+
else
|
|
73
|
+
_pair = new Pair.Pair(pair.key, pair.value);
|
|
74
|
+
const prev = findPair(this.items, _pair.key);
|
|
75
|
+
const sortEntries = this.schema?.sortMapEntries;
|
|
76
|
+
if (prev) {
|
|
77
|
+
if (!overwrite)
|
|
78
|
+
throw new Error(`Key ${_pair.key} already set`);
|
|
79
|
+
// For scalars, keep the old node & its comments and anchors
|
|
80
|
+
if (identity.isScalar(prev.value) && Scalar.isScalarValue(_pair.value))
|
|
81
|
+
prev.value.value = _pair.value;
|
|
82
|
+
else
|
|
83
|
+
prev.value = _pair.value;
|
|
84
|
+
}
|
|
85
|
+
else if (sortEntries) {
|
|
86
|
+
const i = this.items.findIndex(item => sortEntries(_pair, item) < 0);
|
|
87
|
+
if (i === -1)
|
|
88
|
+
this.items.push(_pair);
|
|
89
|
+
else
|
|
90
|
+
this.items.splice(i, 0, _pair);
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
this.items.push(_pair);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
delete(key) {
|
|
97
|
+
const it = findPair(this.items, key);
|
|
98
|
+
if (!it)
|
|
99
|
+
return false;
|
|
100
|
+
const del = this.items.splice(this.items.indexOf(it), 1);
|
|
101
|
+
return del.length > 0;
|
|
102
|
+
}
|
|
103
|
+
get(key, keepScalar) {
|
|
104
|
+
const it = findPair(this.items, key);
|
|
105
|
+
const node = it?.value;
|
|
106
|
+
return (!keepScalar && identity.isScalar(node) ? node.value : node) ?? undefined;
|
|
107
|
+
}
|
|
108
|
+
has(key) {
|
|
109
|
+
return !!findPair(this.items, key);
|
|
110
|
+
}
|
|
111
|
+
set(key, value) {
|
|
112
|
+
this.add(new Pair.Pair(key, value), true);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* @param ctx - Conversion context, originally set in Document#toJS()
|
|
116
|
+
* @param {Class} Type - If set, forces the returned collection type
|
|
117
|
+
* @returns Instance of Type, Map, or Object
|
|
118
|
+
*/
|
|
119
|
+
toJSON(_, ctx, Type) {
|
|
120
|
+
const map = Type ? new Type() : ctx?.mapAsMap ? new Map() : {};
|
|
121
|
+
if (ctx?.onCreate)
|
|
122
|
+
ctx.onCreate(map);
|
|
123
|
+
for (const item of this.items)
|
|
124
|
+
addPairToJSMap.addPairToJSMap(ctx, map, item);
|
|
125
|
+
return map;
|
|
126
|
+
}
|
|
127
|
+
toString(ctx, onComment, onChompKeep) {
|
|
128
|
+
if (!ctx)
|
|
129
|
+
return JSON.stringify(this);
|
|
130
|
+
for (const item of this.items) {
|
|
131
|
+
if (!identity.isPair(item))
|
|
132
|
+
throw new Error(`Map items must all be pairs; found ${JSON.stringify(item)} instead`);
|
|
133
|
+
}
|
|
134
|
+
if (!ctx.allNullValues && this.hasAllNullValues(false))
|
|
135
|
+
ctx = Object.assign({}, ctx, { allNullValues: true });
|
|
136
|
+
return stringifyCollection.stringifyCollection(this, ctx, {
|
|
137
|
+
blockItemPrefix: '',
|
|
138
|
+
flowChars: { start: '{', end: '}' },
|
|
139
|
+
itemIndent: ctx.indent || '',
|
|
140
|
+
onChompKeep,
|
|
141
|
+
onComment
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
exports.YAMLMap = YAMLMap;
|
|
147
|
+
exports.findPair = findPair;
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
import { stringifyCollection } from '../stringify/stringifyCollection.mjs';
|
|
2
|
+
import { addPairToJSMap } from './addPairToJSMap.mjs';
|
|
3
|
+
import { Collection } from './Collection.mjs';
|
|
4
|
+
import { MAP, isPair, isScalar } from './identity.mjs';
|
|
5
|
+
import { Pair, createPair } from './Pair.mjs';
|
|
6
|
+
import { isScalarValue } from './Scalar.mjs';
|
|
7
|
+
|
|
8
|
+
function findPair(items, key) {
|
|
9
|
+
const k = isScalar(key) ? key.value : key;
|
|
10
|
+
for (const it of items) {
|
|
11
|
+
if (isPair(it)) {
|
|
12
|
+
if (it.key === key || it.key === k)
|
|
13
|
+
return it;
|
|
14
|
+
if (isScalar(it.key) && it.key.value === k)
|
|
15
|
+
return it;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
return undefined;
|
|
19
|
+
}
|
|
20
|
+
class YAMLMap extends Collection {
|
|
21
|
+
static get tagName() {
|
|
22
|
+
return 'tag:yaml.org,2002:map';
|
|
23
|
+
}
|
|
24
|
+
constructor(schema) {
|
|
25
|
+
super(MAP, schema);
|
|
26
|
+
this.items = [];
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* A generic collection parsing method that can be extended
|
|
30
|
+
* to other node classes that inherit from YAMLMap
|
|
31
|
+
*/
|
|
32
|
+
static from(schema, obj, ctx) {
|
|
33
|
+
const { keepUndefined, replacer } = ctx;
|
|
34
|
+
const map = new this(schema);
|
|
35
|
+
const add = (key, value) => {
|
|
36
|
+
if (typeof replacer === 'function')
|
|
37
|
+
value = replacer.call(obj, key, value);
|
|
38
|
+
else if (Array.isArray(replacer) && !replacer.includes(key))
|
|
39
|
+
return;
|
|
40
|
+
if (value !== undefined || keepUndefined)
|
|
41
|
+
map.items.push(createPair(key, value, ctx));
|
|
42
|
+
};
|
|
43
|
+
if (obj instanceof Map) {
|
|
44
|
+
for (const [key, value] of obj)
|
|
45
|
+
add(key, value);
|
|
46
|
+
}
|
|
47
|
+
else if (obj && typeof obj === 'object') {
|
|
48
|
+
for (const key of Object.keys(obj))
|
|
49
|
+
add(key, obj[key]);
|
|
50
|
+
}
|
|
51
|
+
if (typeof schema.sortMapEntries === 'function') {
|
|
52
|
+
map.items.sort(schema.sortMapEntries);
|
|
53
|
+
}
|
|
54
|
+
return map;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Adds a value to the collection.
|
|
58
|
+
*
|
|
59
|
+
* @param overwrite - If not set `true`, using a key that is already in the
|
|
60
|
+
* collection will throw. Otherwise, overwrites the previous value.
|
|
61
|
+
*/
|
|
62
|
+
add(pair, overwrite) {
|
|
63
|
+
let _pair;
|
|
64
|
+
if (isPair(pair))
|
|
65
|
+
_pair = pair;
|
|
66
|
+
else if (!pair || typeof pair !== 'object' || !('key' in pair)) {
|
|
67
|
+
// In TypeScript, this never happens.
|
|
68
|
+
_pair = new Pair(pair, pair?.value);
|
|
69
|
+
}
|
|
70
|
+
else
|
|
71
|
+
_pair = new Pair(pair.key, pair.value);
|
|
72
|
+
const prev = findPair(this.items, _pair.key);
|
|
73
|
+
const sortEntries = this.schema?.sortMapEntries;
|
|
74
|
+
if (prev) {
|
|
75
|
+
if (!overwrite)
|
|
76
|
+
throw new Error(`Key ${_pair.key} already set`);
|
|
77
|
+
// For scalars, keep the old node & its comments and anchors
|
|
78
|
+
if (isScalar(prev.value) && isScalarValue(_pair.value))
|
|
79
|
+
prev.value.value = _pair.value;
|
|
80
|
+
else
|
|
81
|
+
prev.value = _pair.value;
|
|
82
|
+
}
|
|
83
|
+
else if (sortEntries) {
|
|
84
|
+
const i = this.items.findIndex(item => sortEntries(_pair, item) < 0);
|
|
85
|
+
if (i === -1)
|
|
86
|
+
this.items.push(_pair);
|
|
87
|
+
else
|
|
88
|
+
this.items.splice(i, 0, _pair);
|
|
89
|
+
}
|
|
90
|
+
else {
|
|
91
|
+
this.items.push(_pair);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
delete(key) {
|
|
95
|
+
const it = findPair(this.items, key);
|
|
96
|
+
if (!it)
|
|
97
|
+
return false;
|
|
98
|
+
const del = this.items.splice(this.items.indexOf(it), 1);
|
|
99
|
+
return del.length > 0;
|
|
100
|
+
}
|
|
101
|
+
get(key, keepScalar) {
|
|
102
|
+
const it = findPair(this.items, key);
|
|
103
|
+
const node = it?.value;
|
|
104
|
+
return (!keepScalar && isScalar(node) ? node.value : node) ?? undefined;
|
|
105
|
+
}
|
|
106
|
+
has(key) {
|
|
107
|
+
return !!findPair(this.items, key);
|
|
108
|
+
}
|
|
109
|
+
set(key, value) {
|
|
110
|
+
this.add(new Pair(key, value), true);
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* @param ctx - Conversion context, originally set in Document#toJS()
|
|
114
|
+
* @param {Class} Type - If set, forces the returned collection type
|
|
115
|
+
* @returns Instance of Type, Map, or Object
|
|
116
|
+
*/
|
|
117
|
+
toJSON(_, ctx, Type) {
|
|
118
|
+
const map = Type ? new Type() : ctx?.mapAsMap ? new Map() : {};
|
|
119
|
+
if (ctx?.onCreate)
|
|
120
|
+
ctx.onCreate(map);
|
|
121
|
+
for (const item of this.items)
|
|
122
|
+
addPairToJSMap(ctx, map, item);
|
|
123
|
+
return map;
|
|
124
|
+
}
|
|
125
|
+
toString(ctx, onComment, onChompKeep) {
|
|
126
|
+
if (!ctx)
|
|
127
|
+
return JSON.stringify(this);
|
|
128
|
+
for (const item of this.items) {
|
|
129
|
+
if (!isPair(item))
|
|
130
|
+
throw new Error(`Map items must all be pairs; found ${JSON.stringify(item)} instead`);
|
|
131
|
+
}
|
|
132
|
+
if (!ctx.allNullValues && this.hasAllNullValues(false))
|
|
133
|
+
ctx = Object.assign({}, ctx, { allNullValues: true });
|
|
134
|
+
return stringifyCollection(this, ctx, {
|
|
135
|
+
blockItemPrefix: '',
|
|
136
|
+
flowChars: { start: '{', end: '}' },
|
|
137
|
+
itemIndent: ctx.indent || '',
|
|
138
|
+
onChompKeep,
|
|
139
|
+
onComment
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export { YAMLMap, findPair };
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var createNode = require('../doc/createNode.js');
|
|
4
|
+
var stringifyCollection = require('../stringify/stringifyCollection.js');
|
|
5
|
+
var Collection = require('./Collection.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var Scalar = require('./Scalar.js');
|
|
8
|
+
var toJS = require('./toJS.js');
|
|
9
|
+
|
|
10
|
+
class YAMLSeq extends Collection.Collection {
|
|
11
|
+
static get tagName() {
|
|
12
|
+
return 'tag:yaml.org,2002:seq';
|
|
13
|
+
}
|
|
14
|
+
constructor(schema) {
|
|
15
|
+
super(identity.SEQ, schema);
|
|
16
|
+
this.items = [];
|
|
17
|
+
}
|
|
18
|
+
add(value) {
|
|
19
|
+
this.items.push(value);
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Removes a value from the collection.
|
|
23
|
+
*
|
|
24
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
25
|
+
* It may be wrapped in a `Scalar`.
|
|
26
|
+
*
|
|
27
|
+
* @returns `true` if the item was found and removed.
|
|
28
|
+
*/
|
|
29
|
+
delete(key) {
|
|
30
|
+
const idx = asItemIndex(key);
|
|
31
|
+
if (typeof idx !== 'number')
|
|
32
|
+
return false;
|
|
33
|
+
const del = this.items.splice(idx, 1);
|
|
34
|
+
return del.length > 0;
|
|
35
|
+
}
|
|
36
|
+
get(key, keepScalar) {
|
|
37
|
+
const idx = asItemIndex(key);
|
|
38
|
+
if (typeof idx !== 'number')
|
|
39
|
+
return undefined;
|
|
40
|
+
const it = this.items[idx];
|
|
41
|
+
return !keepScalar && identity.isScalar(it) ? it.value : it;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Checks if the collection includes a value with the key `key`.
|
|
45
|
+
*
|
|
46
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
47
|
+
* It may be wrapped in a `Scalar`.
|
|
48
|
+
*/
|
|
49
|
+
has(key) {
|
|
50
|
+
const idx = asItemIndex(key);
|
|
51
|
+
return typeof idx === 'number' && idx < this.items.length;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
55
|
+
* boolean to add/remove the item from the set.
|
|
56
|
+
*
|
|
57
|
+
* If `key` does not contain a representation of an integer, this will throw.
|
|
58
|
+
* It may be wrapped in a `Scalar`.
|
|
59
|
+
*/
|
|
60
|
+
set(key, value) {
|
|
61
|
+
const idx = asItemIndex(key);
|
|
62
|
+
if (typeof idx !== 'number')
|
|
63
|
+
throw new Error(`Expected a valid index, not ${key}.`);
|
|
64
|
+
const prev = this.items[idx];
|
|
65
|
+
if (identity.isScalar(prev) && Scalar.isScalarValue(value))
|
|
66
|
+
prev.value = value;
|
|
67
|
+
else
|
|
68
|
+
this.items[idx] = value;
|
|
69
|
+
}
|
|
70
|
+
toJSON(_, ctx) {
|
|
71
|
+
const seq = [];
|
|
72
|
+
if (ctx?.onCreate)
|
|
73
|
+
ctx.onCreate(seq);
|
|
74
|
+
let i = 0;
|
|
75
|
+
for (const item of this.items)
|
|
76
|
+
seq.push(toJS.toJS(item, String(i++), ctx));
|
|
77
|
+
return seq;
|
|
78
|
+
}
|
|
79
|
+
toString(ctx, onComment, onChompKeep) {
|
|
80
|
+
if (!ctx)
|
|
81
|
+
return JSON.stringify(this);
|
|
82
|
+
return stringifyCollection.stringifyCollection(this, ctx, {
|
|
83
|
+
blockItemPrefix: '- ',
|
|
84
|
+
flowChars: { start: '[', end: ']' },
|
|
85
|
+
itemIndent: (ctx.indent || '') + ' ',
|
|
86
|
+
onChompKeep,
|
|
87
|
+
onComment
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
static from(schema, obj, ctx) {
|
|
91
|
+
const { replacer } = ctx;
|
|
92
|
+
const seq = new this(schema);
|
|
93
|
+
if (obj && Symbol.iterator in Object(obj)) {
|
|
94
|
+
let i = 0;
|
|
95
|
+
for (let it of obj) {
|
|
96
|
+
if (typeof replacer === 'function') {
|
|
97
|
+
const key = obj instanceof Set ? it : String(i++);
|
|
98
|
+
it = replacer.call(obj, key, it);
|
|
99
|
+
}
|
|
100
|
+
seq.items.push(createNode.createNode(it, undefined, ctx));
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return seq;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
function asItemIndex(key) {
|
|
107
|
+
let idx = identity.isScalar(key) ? key.value : key;
|
|
108
|
+
if (idx && typeof idx === 'string')
|
|
109
|
+
idx = Number(idx);
|
|
110
|
+
return typeof idx === 'number' && Number.isInteger(idx) && idx >= 0
|
|
111
|
+
? idx
|
|
112
|
+
: null;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
exports.YAMLSeq = YAMLSeq;
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { createNode } from '../doc/createNode.mjs';
|
|
2
|
+
import { stringifyCollection } from '../stringify/stringifyCollection.mjs';
|
|
3
|
+
import { Collection } from './Collection.mjs';
|
|
4
|
+
import { SEQ, isScalar } from './identity.mjs';
|
|
5
|
+
import { isScalarValue } from './Scalar.mjs';
|
|
6
|
+
import { toJS } from './toJS.mjs';
|
|
7
|
+
|
|
8
|
+
class YAMLSeq extends Collection {
|
|
9
|
+
static get tagName() {
|
|
10
|
+
return 'tag:yaml.org,2002:seq';
|
|
11
|
+
}
|
|
12
|
+
constructor(schema) {
|
|
13
|
+
super(SEQ, schema);
|
|
14
|
+
this.items = [];
|
|
15
|
+
}
|
|
16
|
+
add(value) {
|
|
17
|
+
this.items.push(value);
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Removes a value from the collection.
|
|
21
|
+
*
|
|
22
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
23
|
+
* It may be wrapped in a `Scalar`.
|
|
24
|
+
*
|
|
25
|
+
* @returns `true` if the item was found and removed.
|
|
26
|
+
*/
|
|
27
|
+
delete(key) {
|
|
28
|
+
const idx = asItemIndex(key);
|
|
29
|
+
if (typeof idx !== 'number')
|
|
30
|
+
return false;
|
|
31
|
+
const del = this.items.splice(idx, 1);
|
|
32
|
+
return del.length > 0;
|
|
33
|
+
}
|
|
34
|
+
get(key, keepScalar) {
|
|
35
|
+
const idx = asItemIndex(key);
|
|
36
|
+
if (typeof idx !== 'number')
|
|
37
|
+
return undefined;
|
|
38
|
+
const it = this.items[idx];
|
|
39
|
+
return !keepScalar && isScalar(it) ? it.value : it;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Checks if the collection includes a value with the key `key`.
|
|
43
|
+
*
|
|
44
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
45
|
+
* It may be wrapped in a `Scalar`.
|
|
46
|
+
*/
|
|
47
|
+
has(key) {
|
|
48
|
+
const idx = asItemIndex(key);
|
|
49
|
+
return typeof idx === 'number' && idx < this.items.length;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
53
|
+
* boolean to add/remove the item from the set.
|
|
54
|
+
*
|
|
55
|
+
* If `key` does not contain a representation of an integer, this will throw.
|
|
56
|
+
* It may be wrapped in a `Scalar`.
|
|
57
|
+
*/
|
|
58
|
+
set(key, value) {
|
|
59
|
+
const idx = asItemIndex(key);
|
|
60
|
+
if (typeof idx !== 'number')
|
|
61
|
+
throw new Error(`Expected a valid index, not ${key}.`);
|
|
62
|
+
const prev = this.items[idx];
|
|
63
|
+
if (isScalar(prev) && isScalarValue(value))
|
|
64
|
+
prev.value = value;
|
|
65
|
+
else
|
|
66
|
+
this.items[idx] = value;
|
|
67
|
+
}
|
|
68
|
+
toJSON(_, ctx) {
|
|
69
|
+
const seq = [];
|
|
70
|
+
if (ctx?.onCreate)
|
|
71
|
+
ctx.onCreate(seq);
|
|
72
|
+
let i = 0;
|
|
73
|
+
for (const item of this.items)
|
|
74
|
+
seq.push(toJS(item, String(i++), ctx));
|
|
75
|
+
return seq;
|
|
76
|
+
}
|
|
77
|
+
toString(ctx, onComment, onChompKeep) {
|
|
78
|
+
if (!ctx)
|
|
79
|
+
return JSON.stringify(this);
|
|
80
|
+
return stringifyCollection(this, ctx, {
|
|
81
|
+
blockItemPrefix: '- ',
|
|
82
|
+
flowChars: { start: '[', end: ']' },
|
|
83
|
+
itemIndent: (ctx.indent || '') + ' ',
|
|
84
|
+
onChompKeep,
|
|
85
|
+
onComment
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
static from(schema, obj, ctx) {
|
|
89
|
+
const { replacer } = ctx;
|
|
90
|
+
const seq = new this(schema);
|
|
91
|
+
if (obj && Symbol.iterator in Object(obj)) {
|
|
92
|
+
let i = 0;
|
|
93
|
+
for (let it of obj) {
|
|
94
|
+
if (typeof replacer === 'function') {
|
|
95
|
+
const key = obj instanceof Set ? it : String(i++);
|
|
96
|
+
it = replacer.call(obj, key, it);
|
|
97
|
+
}
|
|
98
|
+
seq.items.push(createNode(it, undefined, ctx));
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return seq;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
function asItemIndex(key) {
|
|
105
|
+
let idx = isScalar(key) ? key.value : key;
|
|
106
|
+
if (idx && typeof idx === 'string')
|
|
107
|
+
idx = Number(idx);
|
|
108
|
+
return typeof idx === 'number' && Number.isInteger(idx) && idx >= 0
|
|
109
|
+
? idx
|
|
110
|
+
: null;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export { YAMLSeq };
|
package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var log = require('../log.js');
|
|
4
|
+
var merge = require('../schema/yaml-1.1/merge.js');
|
|
5
|
+
var stringify = require('../stringify/stringify.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var toJS = require('./toJS.js');
|
|
8
|
+
|
|
9
|
+
function addPairToJSMap(ctx, map, { key, value }) {
|
|
10
|
+
if (identity.isNode(key) && key.addToJSMap)
|
|
11
|
+
key.addToJSMap(ctx, map, value);
|
|
12
|
+
// TODO: Should drop this special case for bare << handling
|
|
13
|
+
else if (merge.isMergeKey(ctx, key))
|
|
14
|
+
merge.addMergeToJSMap(ctx, map, value);
|
|
15
|
+
else {
|
|
16
|
+
const jsKey = toJS.toJS(key, '', ctx);
|
|
17
|
+
if (map instanceof Map) {
|
|
18
|
+
map.set(jsKey, toJS.toJS(value, jsKey, ctx));
|
|
19
|
+
}
|
|
20
|
+
else if (map instanceof Set) {
|
|
21
|
+
map.add(jsKey);
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
const stringKey = stringifyKey(key, jsKey, ctx);
|
|
25
|
+
const jsValue = toJS.toJS(value, stringKey, ctx);
|
|
26
|
+
if (stringKey in map)
|
|
27
|
+
Object.defineProperty(map, stringKey, {
|
|
28
|
+
value: jsValue,
|
|
29
|
+
writable: true,
|
|
30
|
+
enumerable: true,
|
|
31
|
+
configurable: true
|
|
32
|
+
});
|
|
33
|
+
else
|
|
34
|
+
map[stringKey] = jsValue;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return map;
|
|
38
|
+
}
|
|
39
|
+
function stringifyKey(key, jsKey, ctx) {
|
|
40
|
+
if (jsKey === null)
|
|
41
|
+
return '';
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
43
|
+
if (typeof jsKey !== 'object')
|
|
44
|
+
return String(jsKey);
|
|
45
|
+
if (identity.isNode(key) && ctx?.doc) {
|
|
46
|
+
const strCtx = stringify.createStringifyContext(ctx.doc, {});
|
|
47
|
+
strCtx.anchors = new Set();
|
|
48
|
+
for (const node of ctx.anchors.keys())
|
|
49
|
+
strCtx.anchors.add(node.anchor);
|
|
50
|
+
strCtx.inFlow = true;
|
|
51
|
+
strCtx.inStringifyKey = true;
|
|
52
|
+
const strKey = key.toString(strCtx);
|
|
53
|
+
if (!ctx.mapKeyWarned) {
|
|
54
|
+
let jsonStr = JSON.stringify(strKey);
|
|
55
|
+
if (jsonStr.length > 40)
|
|
56
|
+
jsonStr = jsonStr.substring(0, 36) + '..."';
|
|
57
|
+
log.warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
|
|
58
|
+
ctx.mapKeyWarned = true;
|
|
59
|
+
}
|
|
60
|
+
return strKey;
|
|
61
|
+
}
|
|
62
|
+
return JSON.stringify(jsKey);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
exports.addPairToJSMap = addPairToJSMap;
|
package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.mjs
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { warn } from '../log.mjs';
|
|
2
|
+
import { isMergeKey, addMergeToJSMap } from '../schema/yaml-1.1/merge.mjs';
|
|
3
|
+
import { createStringifyContext } from '../stringify/stringify.mjs';
|
|
4
|
+
import { isNode } from './identity.mjs';
|
|
5
|
+
import { toJS } from './toJS.mjs';
|
|
6
|
+
|
|
7
|
+
function addPairToJSMap(ctx, map, { key, value }) {
|
|
8
|
+
if (isNode(key) && key.addToJSMap)
|
|
9
|
+
key.addToJSMap(ctx, map, value);
|
|
10
|
+
// TODO: Should drop this special case for bare << handling
|
|
11
|
+
else if (isMergeKey(ctx, key))
|
|
12
|
+
addMergeToJSMap(ctx, map, value);
|
|
13
|
+
else {
|
|
14
|
+
const jsKey = toJS(key, '', ctx);
|
|
15
|
+
if (map instanceof Map) {
|
|
16
|
+
map.set(jsKey, toJS(value, jsKey, ctx));
|
|
17
|
+
}
|
|
18
|
+
else if (map instanceof Set) {
|
|
19
|
+
map.add(jsKey);
|
|
20
|
+
}
|
|
21
|
+
else {
|
|
22
|
+
const stringKey = stringifyKey(key, jsKey, ctx);
|
|
23
|
+
const jsValue = toJS(value, stringKey, ctx);
|
|
24
|
+
if (stringKey in map)
|
|
25
|
+
Object.defineProperty(map, stringKey, {
|
|
26
|
+
value: jsValue,
|
|
27
|
+
writable: true,
|
|
28
|
+
enumerable: true,
|
|
29
|
+
configurable: true
|
|
30
|
+
});
|
|
31
|
+
else
|
|
32
|
+
map[stringKey] = jsValue;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return map;
|
|
36
|
+
}
|
|
37
|
+
function stringifyKey(key, jsKey, ctx) {
|
|
38
|
+
if (jsKey === null)
|
|
39
|
+
return '';
|
|
40
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
41
|
+
if (typeof jsKey !== 'object')
|
|
42
|
+
return String(jsKey);
|
|
43
|
+
if (isNode(key) && ctx?.doc) {
|
|
44
|
+
const strCtx = createStringifyContext(ctx.doc, {});
|
|
45
|
+
strCtx.anchors = new Set();
|
|
46
|
+
for (const node of ctx.anchors.keys())
|
|
47
|
+
strCtx.anchors.add(node.anchor);
|
|
48
|
+
strCtx.inFlow = true;
|
|
49
|
+
strCtx.inStringifyKey = true;
|
|
50
|
+
const strKey = key.toString(strCtx);
|
|
51
|
+
if (!ctx.mapKeyWarned) {
|
|
52
|
+
let jsonStr = JSON.stringify(strKey);
|
|
53
|
+
if (jsonStr.length > 40)
|
|
54
|
+
jsonStr = jsonStr.substring(0, 36) + '..."';
|
|
55
|
+
warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
|
|
56
|
+
ctx.mapKeyWarned = true;
|
|
57
|
+
}
|
|
58
|
+
return strKey;
|
|
59
|
+
}
|
|
60
|
+
return JSON.stringify(jsKey);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export { addPairToJSMap };
|