@windrun-huaiin/dev-scripts 14.0.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,144 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var re = require('./internal/re.js');
|
|
4
|
+
var constants = require('./internal/constants.js');
|
|
5
|
+
var semver$1 = require('./classes/semver.js');
|
|
6
|
+
var identifiers = require('./internal/identifiers.js');
|
|
7
|
+
var parse = require('./functions/parse.js');
|
|
8
|
+
var valid = require('./functions/valid.js');
|
|
9
|
+
var clean = require('./functions/clean.js');
|
|
10
|
+
var inc = require('./functions/inc.js');
|
|
11
|
+
var diff = require('./functions/diff.js');
|
|
12
|
+
var major = require('./functions/major.js');
|
|
13
|
+
var minor = require('./functions/minor.js');
|
|
14
|
+
var patch = require('./functions/patch.js');
|
|
15
|
+
var prerelease = require('./functions/prerelease.js');
|
|
16
|
+
var compare = require('./functions/compare.js');
|
|
17
|
+
var rcompare = require('./functions/rcompare.js');
|
|
18
|
+
var compareLoose = require('./functions/compare-loose.js');
|
|
19
|
+
var compareBuild = require('./functions/compare-build.js');
|
|
20
|
+
var sort = require('./functions/sort.js');
|
|
21
|
+
var rsort = require('./functions/rsort.js');
|
|
22
|
+
var gt = require('./functions/gt.js');
|
|
23
|
+
var lt = require('./functions/lt.js');
|
|
24
|
+
var eq = require('./functions/eq.js');
|
|
25
|
+
var neq = require('./functions/neq.js');
|
|
26
|
+
var gte = require('./functions/gte.js');
|
|
27
|
+
var lte = require('./functions/lte.js');
|
|
28
|
+
var cmp = require('./functions/cmp.js');
|
|
29
|
+
var coerce = require('./functions/coerce.js');
|
|
30
|
+
var comparator = require('./classes/comparator.js');
|
|
31
|
+
var range = require('./classes/range.js');
|
|
32
|
+
var satisfies = require('./functions/satisfies.js');
|
|
33
|
+
var toComparators = require('./ranges/to-comparators.js');
|
|
34
|
+
var maxSatisfying = require('./ranges/max-satisfying.js');
|
|
35
|
+
var minSatisfying = require('./ranges/min-satisfying.js');
|
|
36
|
+
var minVersion = require('./ranges/min-version.js');
|
|
37
|
+
var valid$1 = require('./ranges/valid.js');
|
|
38
|
+
var outside = require('./ranges/outside.js');
|
|
39
|
+
var gtr = require('./ranges/gtr.js');
|
|
40
|
+
var ltr = require('./ranges/ltr.js');
|
|
41
|
+
var intersects = require('./ranges/intersects.js');
|
|
42
|
+
var simplify = require('./ranges/simplify.js');
|
|
43
|
+
var subset = require('./ranges/subset.js');
|
|
44
|
+
|
|
45
|
+
var semver;
|
|
46
|
+
var hasRequiredSemver;
|
|
47
|
+
|
|
48
|
+
function requireSemver () {
|
|
49
|
+
if (hasRequiredSemver) return semver;
|
|
50
|
+
hasRequiredSemver = 1;
|
|
51
|
+
|
|
52
|
+
// just pre-load all the stuff that index.js lazily exports
|
|
53
|
+
const internalRe = re.__require();
|
|
54
|
+
const constants$1 = constants.__require();
|
|
55
|
+
const SemVer = semver$1.__require();
|
|
56
|
+
const identifiers$1 = identifiers.__require();
|
|
57
|
+
const parse$1 = parse.__require();
|
|
58
|
+
const valid$2 = valid.__require();
|
|
59
|
+
const clean$1 = clean.__require();
|
|
60
|
+
const inc$1 = inc.__require();
|
|
61
|
+
const diff$1 = diff.__require();
|
|
62
|
+
const major$1 = major.__require();
|
|
63
|
+
const minor$1 = minor.__require();
|
|
64
|
+
const patch$1 = patch.__require();
|
|
65
|
+
const prerelease$1 = prerelease.__require();
|
|
66
|
+
const compare$1 = compare.__require();
|
|
67
|
+
const rcompare$1 = rcompare.__require();
|
|
68
|
+
const compareLoose$1 = compareLoose.__require();
|
|
69
|
+
const compareBuild$1 = compareBuild.__require();
|
|
70
|
+
const sort$1 = sort.__require();
|
|
71
|
+
const rsort$1 = rsort.__require();
|
|
72
|
+
const gt$1 = gt.__require();
|
|
73
|
+
const lt$1 = lt.__require();
|
|
74
|
+
const eq$1 = eq.__require();
|
|
75
|
+
const neq$1 = neq.__require();
|
|
76
|
+
const gte$1 = gte.__require();
|
|
77
|
+
const lte$1 = lte.__require();
|
|
78
|
+
const cmp$1 = cmp.__require();
|
|
79
|
+
const coerce$1 = coerce.__require();
|
|
80
|
+
const Comparator = comparator.__require();
|
|
81
|
+
const Range = range.__require();
|
|
82
|
+
const satisfies$1 = satisfies.__require();
|
|
83
|
+
const toComparators$1 = toComparators.__require();
|
|
84
|
+
const maxSatisfying$1 = maxSatisfying.__require();
|
|
85
|
+
const minSatisfying$1 = minSatisfying.__require();
|
|
86
|
+
const minVersion$1 = minVersion.__require();
|
|
87
|
+
const validRange = valid$1.__require();
|
|
88
|
+
const outside$1 = outside.__require();
|
|
89
|
+
const gtr$1 = gtr.__require();
|
|
90
|
+
const ltr$1 = ltr.__require();
|
|
91
|
+
const intersects$1 = intersects.__require();
|
|
92
|
+
const simplifyRange = simplify.__require();
|
|
93
|
+
const subset$1 = subset.__require();
|
|
94
|
+
semver = {
|
|
95
|
+
parse: parse$1,
|
|
96
|
+
valid: valid$2,
|
|
97
|
+
clean: clean$1,
|
|
98
|
+
inc: inc$1,
|
|
99
|
+
diff: diff$1,
|
|
100
|
+
major: major$1,
|
|
101
|
+
minor: minor$1,
|
|
102
|
+
patch: patch$1,
|
|
103
|
+
prerelease: prerelease$1,
|
|
104
|
+
compare: compare$1,
|
|
105
|
+
rcompare: rcompare$1,
|
|
106
|
+
compareLoose: compareLoose$1,
|
|
107
|
+
compareBuild: compareBuild$1,
|
|
108
|
+
sort: sort$1,
|
|
109
|
+
rsort: rsort$1,
|
|
110
|
+
gt: gt$1,
|
|
111
|
+
lt: lt$1,
|
|
112
|
+
eq: eq$1,
|
|
113
|
+
neq: neq$1,
|
|
114
|
+
gte: gte$1,
|
|
115
|
+
lte: lte$1,
|
|
116
|
+
cmp: cmp$1,
|
|
117
|
+
coerce: coerce$1,
|
|
118
|
+
Comparator,
|
|
119
|
+
Range,
|
|
120
|
+
satisfies: satisfies$1,
|
|
121
|
+
toComparators: toComparators$1,
|
|
122
|
+
maxSatisfying: maxSatisfying$1,
|
|
123
|
+
minSatisfying: minSatisfying$1,
|
|
124
|
+
minVersion: minVersion$1,
|
|
125
|
+
validRange,
|
|
126
|
+
outside: outside$1,
|
|
127
|
+
gtr: gtr$1,
|
|
128
|
+
ltr: ltr$1,
|
|
129
|
+
intersects: intersects$1,
|
|
130
|
+
simplifyRange,
|
|
131
|
+
subset: subset$1,
|
|
132
|
+
SemVer,
|
|
133
|
+
re: internalRe.re,
|
|
134
|
+
src: internalRe.src,
|
|
135
|
+
tokens: internalRe.t,
|
|
136
|
+
SEMVER_SPEC_VERSION: constants$1.SEMVER_SPEC_VERSION,
|
|
137
|
+
RELEASE_TYPES: constants$1.RELEASE_TYPES,
|
|
138
|
+
compareIdentifiers: identifiers$1.compareIdentifiers,
|
|
139
|
+
rcompareIdentifiers: identifiers$1.rcompareIdentifiers,
|
|
140
|
+
};
|
|
141
|
+
return semver;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
exports.__require = requireSemver;
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { __require as requireRe } from './internal/re.mjs';
|
|
2
|
+
import { __require as requireConstants } from './internal/constants.mjs';
|
|
3
|
+
import { __require as requireSemver$1 } from './classes/semver.mjs';
|
|
4
|
+
import { __require as requireIdentifiers } from './internal/identifiers.mjs';
|
|
5
|
+
import { __require as requireParse } from './functions/parse.mjs';
|
|
6
|
+
import { __require as requireValid } from './functions/valid.mjs';
|
|
7
|
+
import { __require as requireClean } from './functions/clean.mjs';
|
|
8
|
+
import { __require as requireInc } from './functions/inc.mjs';
|
|
9
|
+
import { __require as requireDiff } from './functions/diff.mjs';
|
|
10
|
+
import { __require as requireMajor } from './functions/major.mjs';
|
|
11
|
+
import { __require as requireMinor } from './functions/minor.mjs';
|
|
12
|
+
import { __require as requirePatch } from './functions/patch.mjs';
|
|
13
|
+
import { __require as requirePrerelease } from './functions/prerelease.mjs';
|
|
14
|
+
import { __require as requireCompare } from './functions/compare.mjs';
|
|
15
|
+
import { __require as requireRcompare } from './functions/rcompare.mjs';
|
|
16
|
+
import { __require as requireCompareLoose } from './functions/compare-loose.mjs';
|
|
17
|
+
import { __require as requireCompareBuild } from './functions/compare-build.mjs';
|
|
18
|
+
import { __require as requireSort } from './functions/sort.mjs';
|
|
19
|
+
import { __require as requireRsort } from './functions/rsort.mjs';
|
|
20
|
+
import { __require as requireGt } from './functions/gt.mjs';
|
|
21
|
+
import { __require as requireLt } from './functions/lt.mjs';
|
|
22
|
+
import { __require as requireEq } from './functions/eq.mjs';
|
|
23
|
+
import { __require as requireNeq } from './functions/neq.mjs';
|
|
24
|
+
import { __require as requireGte } from './functions/gte.mjs';
|
|
25
|
+
import { __require as requireLte } from './functions/lte.mjs';
|
|
26
|
+
import { __require as requireCmp } from './functions/cmp.mjs';
|
|
27
|
+
import { __require as requireCoerce } from './functions/coerce.mjs';
|
|
28
|
+
import { __require as requireComparator } from './classes/comparator.mjs';
|
|
29
|
+
import { __require as requireRange } from './classes/range.mjs';
|
|
30
|
+
import { __require as requireSatisfies } from './functions/satisfies.mjs';
|
|
31
|
+
import { __require as requireToComparators } from './ranges/to-comparators.mjs';
|
|
32
|
+
import { __require as requireMaxSatisfying } from './ranges/max-satisfying.mjs';
|
|
33
|
+
import { __require as requireMinSatisfying } from './ranges/min-satisfying.mjs';
|
|
34
|
+
import { __require as requireMinVersion } from './ranges/min-version.mjs';
|
|
35
|
+
import { __require as requireValid$1 } from './ranges/valid.mjs';
|
|
36
|
+
import { __require as requireOutside } from './ranges/outside.mjs';
|
|
37
|
+
import { __require as requireGtr } from './ranges/gtr.mjs';
|
|
38
|
+
import { __require as requireLtr } from './ranges/ltr.mjs';
|
|
39
|
+
import { __require as requireIntersects } from './ranges/intersects.mjs';
|
|
40
|
+
import { __require as requireSimplify } from './ranges/simplify.mjs';
|
|
41
|
+
import { __require as requireSubset } from './ranges/subset.mjs';
|
|
42
|
+
|
|
43
|
+
var semver;
|
|
44
|
+
var hasRequiredSemver;
|
|
45
|
+
|
|
46
|
+
function requireSemver () {
|
|
47
|
+
if (hasRequiredSemver) return semver;
|
|
48
|
+
hasRequiredSemver = 1;
|
|
49
|
+
|
|
50
|
+
// just pre-load all the stuff that index.js lazily exports
|
|
51
|
+
const internalRe = requireRe();
|
|
52
|
+
const constants = requireConstants();
|
|
53
|
+
const SemVer = requireSemver$1();
|
|
54
|
+
const identifiers = requireIdentifiers();
|
|
55
|
+
const parse = requireParse();
|
|
56
|
+
const valid = requireValid();
|
|
57
|
+
const clean = requireClean();
|
|
58
|
+
const inc = requireInc();
|
|
59
|
+
const diff = requireDiff();
|
|
60
|
+
const major = requireMajor();
|
|
61
|
+
const minor = requireMinor();
|
|
62
|
+
const patch = requirePatch();
|
|
63
|
+
const prerelease = requirePrerelease();
|
|
64
|
+
const compare = requireCompare();
|
|
65
|
+
const rcompare = requireRcompare();
|
|
66
|
+
const compareLoose = requireCompareLoose();
|
|
67
|
+
const compareBuild = requireCompareBuild();
|
|
68
|
+
const sort = requireSort();
|
|
69
|
+
const rsort = requireRsort();
|
|
70
|
+
const gt = requireGt();
|
|
71
|
+
const lt = requireLt();
|
|
72
|
+
const eq = requireEq();
|
|
73
|
+
const neq = requireNeq();
|
|
74
|
+
const gte = requireGte();
|
|
75
|
+
const lte = requireLte();
|
|
76
|
+
const cmp = requireCmp();
|
|
77
|
+
const coerce = requireCoerce();
|
|
78
|
+
const Comparator = requireComparator();
|
|
79
|
+
const Range = requireRange();
|
|
80
|
+
const satisfies = requireSatisfies();
|
|
81
|
+
const toComparators = requireToComparators();
|
|
82
|
+
const maxSatisfying = requireMaxSatisfying();
|
|
83
|
+
const minSatisfying = requireMinSatisfying();
|
|
84
|
+
const minVersion = requireMinVersion();
|
|
85
|
+
const validRange = requireValid$1();
|
|
86
|
+
const outside = requireOutside();
|
|
87
|
+
const gtr = requireGtr();
|
|
88
|
+
const ltr = requireLtr();
|
|
89
|
+
const intersects = requireIntersects();
|
|
90
|
+
const simplifyRange = requireSimplify();
|
|
91
|
+
const subset = requireSubset();
|
|
92
|
+
semver = {
|
|
93
|
+
parse,
|
|
94
|
+
valid,
|
|
95
|
+
clean,
|
|
96
|
+
inc,
|
|
97
|
+
diff,
|
|
98
|
+
major,
|
|
99
|
+
minor,
|
|
100
|
+
patch,
|
|
101
|
+
prerelease,
|
|
102
|
+
compare,
|
|
103
|
+
rcompare,
|
|
104
|
+
compareLoose,
|
|
105
|
+
compareBuild,
|
|
106
|
+
sort,
|
|
107
|
+
rsort,
|
|
108
|
+
gt,
|
|
109
|
+
lt,
|
|
110
|
+
eq,
|
|
111
|
+
neq,
|
|
112
|
+
gte,
|
|
113
|
+
lte,
|
|
114
|
+
cmp,
|
|
115
|
+
coerce,
|
|
116
|
+
Comparator,
|
|
117
|
+
Range,
|
|
118
|
+
satisfies,
|
|
119
|
+
toComparators,
|
|
120
|
+
maxSatisfying,
|
|
121
|
+
minSatisfying,
|
|
122
|
+
minVersion,
|
|
123
|
+
validRange,
|
|
124
|
+
outside,
|
|
125
|
+
gtr,
|
|
126
|
+
ltr,
|
|
127
|
+
intersects,
|
|
128
|
+
simplifyRange,
|
|
129
|
+
subset,
|
|
130
|
+
SemVer,
|
|
131
|
+
re: internalRe.re,
|
|
132
|
+
src: internalRe.src,
|
|
133
|
+
tokens: internalRe.t,
|
|
134
|
+
SEMVER_SPEC_VERSION: constants.SEMVER_SPEC_VERSION,
|
|
135
|
+
RELEASE_TYPES: constants.RELEASE_TYPES,
|
|
136
|
+
compareIdentifiers: identifiers.compareIdentifiers,
|
|
137
|
+
rcompareIdentifiers: identifiers.rcompareIdentifiers,
|
|
138
|
+
};
|
|
139
|
+
return semver;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export { requireSemver as __require };
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var constants;
|
|
4
|
+
var hasRequiredConstants;
|
|
5
|
+
|
|
6
|
+
function requireConstants () {
|
|
7
|
+
if (hasRequiredConstants) return constants;
|
|
8
|
+
hasRequiredConstants = 1;
|
|
9
|
+
|
|
10
|
+
// Note: this is the semver.org version of the spec that it implements
|
|
11
|
+
// Not necessarily the package version of this code.
|
|
12
|
+
const SEMVER_SPEC_VERSION = '2.0.0';
|
|
13
|
+
|
|
14
|
+
const MAX_LENGTH = 256;
|
|
15
|
+
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
|
|
16
|
+
/* istanbul ignore next */ 9007199254740991;
|
|
17
|
+
|
|
18
|
+
// Max safe segment length for coercion.
|
|
19
|
+
const MAX_SAFE_COMPONENT_LENGTH = 16;
|
|
20
|
+
|
|
21
|
+
// Max safe length for a build identifier. The max length minus 6 characters for
|
|
22
|
+
// the shortest version with a build 0.0.0+BUILD.
|
|
23
|
+
const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;
|
|
24
|
+
|
|
25
|
+
const RELEASE_TYPES = [
|
|
26
|
+
'major',
|
|
27
|
+
'premajor',
|
|
28
|
+
'minor',
|
|
29
|
+
'preminor',
|
|
30
|
+
'patch',
|
|
31
|
+
'prepatch',
|
|
32
|
+
'prerelease',
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
constants = {
|
|
36
|
+
MAX_LENGTH,
|
|
37
|
+
MAX_SAFE_COMPONENT_LENGTH,
|
|
38
|
+
MAX_SAFE_BUILD_LENGTH,
|
|
39
|
+
MAX_SAFE_INTEGER,
|
|
40
|
+
RELEASE_TYPES,
|
|
41
|
+
SEMVER_SPEC_VERSION,
|
|
42
|
+
FLAG_INCLUDE_PRERELEASE: 0b001,
|
|
43
|
+
FLAG_LOOSE: 0b010,
|
|
44
|
+
};
|
|
45
|
+
return constants;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
exports.__require = requireConstants;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
var constants;
|
|
2
|
+
var hasRequiredConstants;
|
|
3
|
+
|
|
4
|
+
function requireConstants () {
|
|
5
|
+
if (hasRequiredConstants) return constants;
|
|
6
|
+
hasRequiredConstants = 1;
|
|
7
|
+
|
|
8
|
+
// Note: this is the semver.org version of the spec that it implements
|
|
9
|
+
// Not necessarily the package version of this code.
|
|
10
|
+
const SEMVER_SPEC_VERSION = '2.0.0';
|
|
11
|
+
|
|
12
|
+
const MAX_LENGTH = 256;
|
|
13
|
+
const MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
|
|
14
|
+
/* istanbul ignore next */ 9007199254740991;
|
|
15
|
+
|
|
16
|
+
// Max safe segment length for coercion.
|
|
17
|
+
const MAX_SAFE_COMPONENT_LENGTH = 16;
|
|
18
|
+
|
|
19
|
+
// Max safe length for a build identifier. The max length minus 6 characters for
|
|
20
|
+
// the shortest version with a build 0.0.0+BUILD.
|
|
21
|
+
const MAX_SAFE_BUILD_LENGTH = MAX_LENGTH - 6;
|
|
22
|
+
|
|
23
|
+
const RELEASE_TYPES = [
|
|
24
|
+
'major',
|
|
25
|
+
'premajor',
|
|
26
|
+
'minor',
|
|
27
|
+
'preminor',
|
|
28
|
+
'patch',
|
|
29
|
+
'prepatch',
|
|
30
|
+
'prerelease',
|
|
31
|
+
];
|
|
32
|
+
|
|
33
|
+
constants = {
|
|
34
|
+
MAX_LENGTH,
|
|
35
|
+
MAX_SAFE_COMPONENT_LENGTH,
|
|
36
|
+
MAX_SAFE_BUILD_LENGTH,
|
|
37
|
+
MAX_SAFE_INTEGER,
|
|
38
|
+
RELEASE_TYPES,
|
|
39
|
+
SEMVER_SPEC_VERSION,
|
|
40
|
+
FLAG_INCLUDE_PRERELEASE: 0b001,
|
|
41
|
+
FLAG_LOOSE: 0b010,
|
|
42
|
+
};
|
|
43
|
+
return constants;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export { requireConstants as __require };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var debug_1;
|
|
4
|
+
var hasRequiredDebug;
|
|
5
|
+
|
|
6
|
+
function requireDebug () {
|
|
7
|
+
if (hasRequiredDebug) return debug_1;
|
|
8
|
+
hasRequiredDebug = 1;
|
|
9
|
+
|
|
10
|
+
const debug = (
|
|
11
|
+
typeof process === 'object' &&
|
|
12
|
+
process.env &&
|
|
13
|
+
process.env.NODE_DEBUG &&
|
|
14
|
+
/\bsemver\b/i.test(process.env.NODE_DEBUG)
|
|
15
|
+
) ? (...args) => console.error('SEMVER', ...args)
|
|
16
|
+
: () => {};
|
|
17
|
+
|
|
18
|
+
debug_1 = debug;
|
|
19
|
+
return debug_1;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
exports.__require = requireDebug;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var debug_1;
|
|
2
|
+
var hasRequiredDebug;
|
|
3
|
+
|
|
4
|
+
function requireDebug () {
|
|
5
|
+
if (hasRequiredDebug) return debug_1;
|
|
6
|
+
hasRequiredDebug = 1;
|
|
7
|
+
|
|
8
|
+
const debug = (
|
|
9
|
+
typeof process === 'object' &&
|
|
10
|
+
process.env &&
|
|
11
|
+
process.env.NODE_DEBUG &&
|
|
12
|
+
/\bsemver\b/i.test(process.env.NODE_DEBUG)
|
|
13
|
+
) ? (...args) => console.error('SEMVER', ...args)
|
|
14
|
+
: () => {};
|
|
15
|
+
|
|
16
|
+
debug_1 = debug;
|
|
17
|
+
return debug_1;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { requireDebug as __require };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var identifiers;
|
|
4
|
+
var hasRequiredIdentifiers;
|
|
5
|
+
|
|
6
|
+
function requireIdentifiers () {
|
|
7
|
+
if (hasRequiredIdentifiers) return identifiers;
|
|
8
|
+
hasRequiredIdentifiers = 1;
|
|
9
|
+
|
|
10
|
+
const numeric = /^[0-9]+$/;
|
|
11
|
+
const compareIdentifiers = (a, b) => {
|
|
12
|
+
if (typeof a === 'number' && typeof b === 'number') {
|
|
13
|
+
return a === b ? 0 : a < b ? -1 : 1
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const anum = numeric.test(a);
|
|
17
|
+
const bnum = numeric.test(b);
|
|
18
|
+
|
|
19
|
+
if (anum && bnum) {
|
|
20
|
+
a = +a;
|
|
21
|
+
b = +b;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
return a === b ? 0
|
|
25
|
+
: (anum && !bnum) ? -1
|
|
26
|
+
: (bnum && !anum) ? 1
|
|
27
|
+
: a < b ? -1
|
|
28
|
+
: 1
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
|
|
32
|
+
|
|
33
|
+
identifiers = {
|
|
34
|
+
compareIdentifiers,
|
|
35
|
+
rcompareIdentifiers,
|
|
36
|
+
};
|
|
37
|
+
return identifiers;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
exports.__require = requireIdentifiers;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var identifiers;
|
|
2
|
+
var hasRequiredIdentifiers;
|
|
3
|
+
|
|
4
|
+
function requireIdentifiers () {
|
|
5
|
+
if (hasRequiredIdentifiers) return identifiers;
|
|
6
|
+
hasRequiredIdentifiers = 1;
|
|
7
|
+
|
|
8
|
+
const numeric = /^[0-9]+$/;
|
|
9
|
+
const compareIdentifiers = (a, b) => {
|
|
10
|
+
if (typeof a === 'number' && typeof b === 'number') {
|
|
11
|
+
return a === b ? 0 : a < b ? -1 : 1
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
const anum = numeric.test(a);
|
|
15
|
+
const bnum = numeric.test(b);
|
|
16
|
+
|
|
17
|
+
if (anum && bnum) {
|
|
18
|
+
a = +a;
|
|
19
|
+
b = +b;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return a === b ? 0
|
|
23
|
+
: (anum && !bnum) ? -1
|
|
24
|
+
: (bnum && !anum) ? 1
|
|
25
|
+
: a < b ? -1
|
|
26
|
+
: 1
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
|
|
30
|
+
|
|
31
|
+
identifiers = {
|
|
32
|
+
compareIdentifiers,
|
|
33
|
+
rcompareIdentifiers,
|
|
34
|
+
};
|
|
35
|
+
return identifiers;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export { requireIdentifiers as __require };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var lrucache;
|
|
4
|
+
var hasRequiredLrucache;
|
|
5
|
+
|
|
6
|
+
function requireLrucache () {
|
|
7
|
+
if (hasRequiredLrucache) return lrucache;
|
|
8
|
+
hasRequiredLrucache = 1;
|
|
9
|
+
|
|
10
|
+
class LRUCache {
|
|
11
|
+
constructor () {
|
|
12
|
+
this.max = 1000;
|
|
13
|
+
this.map = new Map();
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
get (key) {
|
|
17
|
+
const value = this.map.get(key);
|
|
18
|
+
if (value === undefined) {
|
|
19
|
+
return undefined
|
|
20
|
+
} else {
|
|
21
|
+
// Remove the key from the map and add it to the end
|
|
22
|
+
this.map.delete(key);
|
|
23
|
+
this.map.set(key, value);
|
|
24
|
+
return value
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
delete (key) {
|
|
29
|
+
return this.map.delete(key)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
set (key, value) {
|
|
33
|
+
const deleted = this.delete(key);
|
|
34
|
+
|
|
35
|
+
if (!deleted && value !== undefined) {
|
|
36
|
+
// If cache is full, delete the least recently used item
|
|
37
|
+
if (this.map.size >= this.max) {
|
|
38
|
+
const firstKey = this.map.keys().next().value;
|
|
39
|
+
this.delete(firstKey);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
this.map.set(key, value);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
return this
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
lrucache = LRUCache;
|
|
50
|
+
return lrucache;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
exports.__require = requireLrucache;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
var lrucache;
|
|
2
|
+
var hasRequiredLrucache;
|
|
3
|
+
|
|
4
|
+
function requireLrucache () {
|
|
5
|
+
if (hasRequiredLrucache) return lrucache;
|
|
6
|
+
hasRequiredLrucache = 1;
|
|
7
|
+
|
|
8
|
+
class LRUCache {
|
|
9
|
+
constructor () {
|
|
10
|
+
this.max = 1000;
|
|
11
|
+
this.map = new Map();
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
get (key) {
|
|
15
|
+
const value = this.map.get(key);
|
|
16
|
+
if (value === undefined) {
|
|
17
|
+
return undefined
|
|
18
|
+
} else {
|
|
19
|
+
// Remove the key from the map and add it to the end
|
|
20
|
+
this.map.delete(key);
|
|
21
|
+
this.map.set(key, value);
|
|
22
|
+
return value
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
delete (key) {
|
|
27
|
+
return this.map.delete(key)
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
set (key, value) {
|
|
31
|
+
const deleted = this.delete(key);
|
|
32
|
+
|
|
33
|
+
if (!deleted && value !== undefined) {
|
|
34
|
+
// If cache is full, delete the least recently used item
|
|
35
|
+
if (this.map.size >= this.max) {
|
|
36
|
+
const firstKey = this.map.keys().next().value;
|
|
37
|
+
this.delete(firstKey);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
this.map.set(key, value);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
return this
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
lrucache = LRUCache;
|
|
48
|
+
return lrucache;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export { requireLrucache as __require };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var parseOptions_1;
|
|
4
|
+
var hasRequiredParseOptions;
|
|
5
|
+
|
|
6
|
+
function requireParseOptions () {
|
|
7
|
+
if (hasRequiredParseOptions) return parseOptions_1;
|
|
8
|
+
hasRequiredParseOptions = 1;
|
|
9
|
+
|
|
10
|
+
// parse out just the options we care about
|
|
11
|
+
const looseOption = Object.freeze({ loose: true });
|
|
12
|
+
const emptyOpts = Object.freeze({ });
|
|
13
|
+
const parseOptions = options => {
|
|
14
|
+
if (!options) {
|
|
15
|
+
return emptyOpts
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
if (typeof options !== 'object') {
|
|
19
|
+
return looseOption
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
return options
|
|
23
|
+
};
|
|
24
|
+
parseOptions_1 = parseOptions;
|
|
25
|
+
return parseOptions_1;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
exports.__require = requireParseOptions;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
var parseOptions_1;
|
|
2
|
+
var hasRequiredParseOptions;
|
|
3
|
+
|
|
4
|
+
function requireParseOptions () {
|
|
5
|
+
if (hasRequiredParseOptions) return parseOptions_1;
|
|
6
|
+
hasRequiredParseOptions = 1;
|
|
7
|
+
|
|
8
|
+
// parse out just the options we care about
|
|
9
|
+
const looseOption = Object.freeze({ loose: true });
|
|
10
|
+
const emptyOpts = Object.freeze({ });
|
|
11
|
+
const parseOptions = options => {
|
|
12
|
+
if (!options) {
|
|
13
|
+
return emptyOpts
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
if (typeof options !== 'object') {
|
|
17
|
+
return looseOption
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
return options
|
|
21
|
+
};
|
|
22
|
+
parseOptions_1 = parseOptions;
|
|
23
|
+
return parseOptions_1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export { requireParseOptions as __require };
|