@windrun-huaiin/dev-scripts 14.0.0 → 14.1.1

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.
Files changed (250) hide show
  1. package/dist/_virtual/_commonjsHelpers.js +7 -0
  2. package/dist/_virtual/_commonjsHelpers.mjs +5 -0
  3. package/dist/_virtual/index.js +11 -0
  4. package/dist/_virtual/index.mjs +7 -0
  5. package/dist/_virtual/re.js +5 -0
  6. package/dist/_virtual/re.mjs +3 -0
  7. package/dist/cli.js +33 -1
  8. package/dist/cli.mjs +33 -1
  9. package/dist/commands/diaomao-update.d.ts +3 -0
  10. package/dist/commands/diaomao-update.d.ts.map +1 -0
  11. package/dist/commands/diaomao-update.js +336 -0
  12. package/dist/commands/diaomao-update.mjs +334 -0
  13. package/dist/config/index.d.ts.map +1 -1
  14. package/dist/config/index.js +9 -0
  15. package/dist/config/index.mjs +9 -0
  16. package/dist/config/schema.d.ts +5 -0
  17. package/dist/config/schema.d.ts.map +1 -1
  18. package/dist/config/schema.js +5 -0
  19. package/dist/config/schema.mjs +5 -0
  20. package/dist/index.d.ts +1 -0
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +2 -0
  23. package/dist/index.mjs +1 -0
  24. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.js +161 -0
  25. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.mjs +159 -0
  26. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.js +576 -0
  27. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.mjs +574 -0
  28. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.js +350 -0
  29. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.mjs +348 -0
  30. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.js +21 -0
  31. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.mjs +19 -0
  32. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.js +72 -0
  33. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.mjs +70 -0
  34. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.js +77 -0
  35. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.mjs +75 -0
  36. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.js +22 -0
  37. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.mjs +20 -0
  38. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.js +18 -0
  39. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.mjs +16 -0
  40. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.js +20 -0
  41. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.mjs +18 -0
  42. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.js +73 -0
  43. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.mjs +71 -0
  44. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.js +18 -0
  45. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.mjs +16 -0
  46. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.js +18 -0
  47. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.mjs +16 -0
  48. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.js +18 -0
  49. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.mjs +16 -0
  50. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.js +34 -0
  51. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.mjs +32 -0
  52. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.js +18 -0
  53. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.mjs +16 -0
  54. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.js +18 -0
  55. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.mjs +16 -0
  56. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.js +18 -0
  57. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.mjs +16 -0
  58. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.js +18 -0
  59. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.mjs +16 -0
  60. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.js +18 -0
  61. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.mjs +16 -0
  62. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.js +31 -0
  63. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.mjs +29 -0
  64. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.js +18 -0
  65. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.mjs +16 -0
  66. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.js +21 -0
  67. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.mjs +19 -0
  68. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.js +18 -0
  69. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.mjs +16 -0
  70. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.js +18 -0
  71. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.mjs +16 -0
  72. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.js +25 -0
  73. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.mjs +23 -0
  74. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.js +18 -0
  75. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.mjs +16 -0
  76. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.js +21 -0
  77. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.mjs +19 -0
  78. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.js +144 -0
  79. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.mjs +142 -0
  80. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.js +48 -0
  81. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.mjs +46 -0
  82. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.js +22 -0
  83. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.mjs +20 -0
  84. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.js +40 -0
  85. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.mjs +38 -0
  86. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.js +53 -0
  87. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.mjs +51 -0
  88. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.js +28 -0
  89. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.mjs +26 -0
  90. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.js +239 -0
  91. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.mjs +237 -0
  92. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.js +19 -0
  93. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.mjs +17 -0
  94. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.js +22 -0
  95. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.mjs +20 -0
  96. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.js +19 -0
  97. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.mjs +17 -0
  98. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.js +41 -0
  99. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.mjs +39 -0
  100. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.js +40 -0
  101. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.mjs +38 -0
  102. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.js +78 -0
  103. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.mjs +76 -0
  104. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.js +102 -0
  105. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.mjs +100 -0
  106. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.js +63 -0
  107. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.mjs +61 -0
  108. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.js +265 -0
  109. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.mjs +263 -0
  110. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.js +23 -0
  111. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.mjs +21 -0
  112. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.js +26 -0
  113. package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.mjs +24 -0
  114. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.js +90 -0
  115. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.mjs +88 -0
  116. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.js +45 -0
  117. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.mjs +43 -0
  118. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.js +105 -0
  119. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.mjs +102 -0
  120. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.js +88 -0
  121. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.mjs +86 -0
  122. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.js +219 -0
  123. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.mjs +217 -0
  124. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.js +117 -0
  125. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.mjs +115 -0
  126. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +200 -0
  127. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.mjs +198 -0
  128. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +51 -0
  129. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.mjs +49 -0
  130. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.js +39 -0
  131. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.mjs +37 -0
  132. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +209 -0
  133. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.mjs +207 -0
  134. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
  135. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.mjs +223 -0
  136. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
  137. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.mjs +146 -0
  138. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.js +36 -0
  139. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.mjs +34 -0
  140. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +28 -0
  141. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.mjs +26 -0
  142. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +17 -0
  143. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.mjs +15 -0
  144. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.js +15 -0
  145. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.mjs +13 -0
  146. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.js +337 -0
  147. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.mjs +335 -0
  148. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.js +76 -0
  149. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.mjs +71 -0
  150. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.js +57 -0
  151. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.mjs +55 -0
  152. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.js +90 -0
  153. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.mjs +88 -0
  154. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.js +178 -0
  155. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.mjs +176 -0
  156. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.js +62 -0
  157. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.mjs +57 -0
  158. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.js +9 -0
  159. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.mjs +7 -0
  160. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
  161. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.mjs +114 -0
  162. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.js +151 -0
  163. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.mjs +147 -0
  164. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.js +40 -0
  165. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.mjs +38 -0
  166. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.js +39 -0
  167. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.mjs +36 -0
  168. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.js +27 -0
  169. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.mjs +24 -0
  170. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.js +147 -0
  171. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.mjs +144 -0
  172. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +115 -0
  173. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.mjs +113 -0
  174. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +65 -0
  175. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.mjs +63 -0
  176. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.js +53 -0
  177. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.mjs +36 -0
  178. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.js +39 -0
  179. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.mjs +37 -0
  180. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.js +79 -0
  181. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.mjs +73 -0
  182. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.js +719 -0
  183. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.mjs +717 -0
  184. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.js +41 -0
  185. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.mjs +39 -0
  186. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.js +969 -0
  187. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.mjs +967 -0
  188. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.js +68 -0
  189. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.mjs +64 -0
  190. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.js +39 -0
  191. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.mjs +37 -0
  192. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.js +19 -0
  193. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.mjs +17 -0
  194. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.js +17 -0
  195. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.mjs +15 -0
  196. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.js +19 -0
  197. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.mjs +17 -0
  198. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.js +16 -0
  199. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.mjs +14 -0
  200. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.js +21 -0
  201. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.mjs +19 -0
  202. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.js +47 -0
  203. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.mjs +43 -0
  204. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.js +42 -0
  205. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.mjs +38 -0
  206. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.js +25 -0
  207. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.mjs +23 -0
  208. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.js +64 -0
  209. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.mjs +62 -0
  210. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.js +99 -0
  211. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.mjs +96 -0
  212. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +60 -0
  213. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.mjs +58 -0
  214. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +29 -0
  215. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.mjs +26 -0
  216. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +50 -0
  217. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.mjs +46 -0
  218. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +76 -0
  219. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.mjs +71 -0
  220. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +68 -0
  221. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.mjs +64 -0
  222. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +77 -0
  223. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.mjs +74 -0
  224. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +82 -0
  225. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.mjs +78 -0
  226. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +41 -0
  227. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.mjs +39 -0
  228. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +96 -0
  229. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.mjs +93 -0
  230. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +105 -0
  231. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.mjs +101 -0
  232. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +151 -0
  233. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.mjs +146 -0
  234. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.js +131 -0
  235. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.mjs +128 -0
  236. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +145 -0
  237. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.mjs +143 -0
  238. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.js +24 -0
  239. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.mjs +20 -0
  240. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +87 -0
  241. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.mjs +85 -0
  242. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +26 -0
  243. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.mjs +24 -0
  244. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.js +152 -0
  245. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.mjs +150 -0
  246. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.js +338 -0
  247. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.mjs +336 -0
  248. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.js +148 -0
  249. package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.mjs +146 -0
  250. package/package.json +6 -4
@@ -0,0 +1,574 @@
1
+ import { __require as requireLrucache } from '../internal/lrucache.mjs';
2
+ import { __require as requireParseOptions } from '../internal/parse-options.mjs';
3
+ import { __require as requireComparator } from './comparator.mjs';
4
+ import { __require as requireDebug } from '../internal/debug.mjs';
5
+ import { __require as requireSemver } from './semver.mjs';
6
+ import { __require as requireRe } from '../internal/re.mjs';
7
+ import { __require as requireConstants } from '../internal/constants.mjs';
8
+
9
+ var range;
10
+ var hasRequiredRange;
11
+
12
+ function requireRange () {
13
+ if (hasRequiredRange) return range;
14
+ hasRequiredRange = 1;
15
+
16
+ const SPACE_CHARACTERS = /\s+/g;
17
+
18
+ // hoisted class for cyclic dependency
19
+ class Range {
20
+ constructor (range, options) {
21
+ options = parseOptions(options);
22
+
23
+ if (range instanceof Range) {
24
+ if (
25
+ range.loose === !!options.loose &&
26
+ range.includePrerelease === !!options.includePrerelease
27
+ ) {
28
+ return range
29
+ } else {
30
+ return new Range(range.raw, options)
31
+ }
32
+ }
33
+
34
+ if (range instanceof Comparator) {
35
+ // just put it in the set and return
36
+ this.raw = range.value;
37
+ this.set = [[range]];
38
+ this.formatted = undefined;
39
+ return this
40
+ }
41
+
42
+ this.options = options;
43
+ this.loose = !!options.loose;
44
+ this.includePrerelease = !!options.includePrerelease;
45
+
46
+ // First reduce all whitespace as much as possible so we do not have to rely
47
+ // on potentially slow regexes like \s*. This is then stored and used for
48
+ // future error messages as well.
49
+ this.raw = range.trim().replace(SPACE_CHARACTERS, ' ');
50
+
51
+ // First, split on ||
52
+ this.set = this.raw
53
+ .split('||')
54
+ // map the range to a 2d array of comparators
55
+ .map(r => this.parseRange(r.trim()))
56
+ // throw out any comparator lists that are empty
57
+ // this generally means that it was not a valid range, which is allowed
58
+ // in loose mode, but will still throw if the WHOLE range is invalid.
59
+ .filter(c => c.length);
60
+
61
+ if (!this.set.length) {
62
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`)
63
+ }
64
+
65
+ // if we have any that are not the null set, throw out null sets.
66
+ if (this.set.length > 1) {
67
+ // keep the first one, in case they're all null sets
68
+ const first = this.set[0];
69
+ this.set = this.set.filter(c => !isNullSet(c[0]));
70
+ if (this.set.length === 0) {
71
+ this.set = [first];
72
+ } else if (this.set.length > 1) {
73
+ // if we have any that are *, then the range is just *
74
+ for (const c of this.set) {
75
+ if (c.length === 1 && isAny(c[0])) {
76
+ this.set = [c];
77
+ break
78
+ }
79
+ }
80
+ }
81
+ }
82
+
83
+ this.formatted = undefined;
84
+ }
85
+
86
+ get range () {
87
+ if (this.formatted === undefined) {
88
+ this.formatted = '';
89
+ for (let i = 0; i < this.set.length; i++) {
90
+ if (i > 0) {
91
+ this.formatted += '||';
92
+ }
93
+ const comps = this.set[i];
94
+ for (let k = 0; k < comps.length; k++) {
95
+ if (k > 0) {
96
+ this.formatted += ' ';
97
+ }
98
+ this.formatted += comps[k].toString().trim();
99
+ }
100
+ }
101
+ }
102
+ return this.formatted
103
+ }
104
+
105
+ format () {
106
+ return this.range
107
+ }
108
+
109
+ toString () {
110
+ return this.range
111
+ }
112
+
113
+ parseRange (range) {
114
+ // memoize range parsing for performance.
115
+ // this is a very hot path, and fully deterministic.
116
+ const memoOpts =
117
+ (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) |
118
+ (this.options.loose && FLAG_LOOSE);
119
+ const memoKey = memoOpts + ':' + range;
120
+ const cached = cache.get(memoKey);
121
+ if (cached) {
122
+ return cached
123
+ }
124
+
125
+ const loose = this.options.loose;
126
+ // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`
127
+ const hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE];
128
+ range = range.replace(hr, hyphenReplace(this.options.includePrerelease));
129
+ debug('hyphen replace', range);
130
+
131
+ // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`
132
+ range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace);
133
+ debug('comparator trim', range);
134
+
135
+ // `~ 1.2.3` => `~1.2.3`
136
+ range = range.replace(re[t.TILDETRIM], tildeTrimReplace);
137
+ debug('tilde trim', range);
138
+
139
+ // `^ 1.2.3` => `^1.2.3`
140
+ range = range.replace(re[t.CARETTRIM], caretTrimReplace);
141
+ debug('caret trim', range);
142
+
143
+ // At this point, the range is completely trimmed and
144
+ // ready to be split into comparators.
145
+
146
+ let rangeList = range
147
+ .split(' ')
148
+ .map(comp => parseComparator(comp, this.options))
149
+ .join(' ')
150
+ .split(/\s+/)
151
+ // >=0.0.0 is equivalent to *
152
+ .map(comp => replaceGTE0(comp, this.options));
153
+
154
+ if (loose) {
155
+ // in loose mode, throw out any that are not valid comparators
156
+ rangeList = rangeList.filter(comp => {
157
+ debug('loose invalid filter', comp, this.options);
158
+ return !!comp.match(re[t.COMPARATORLOOSE])
159
+ });
160
+ }
161
+ debug('range list', rangeList);
162
+
163
+ // if any comparators are the null set, then replace with JUST null set
164
+ // if more than one comparator, remove any * comparators
165
+ // also, don't include the same comparator more than once
166
+ const rangeMap = new Map();
167
+ const comparators = rangeList.map(comp => new Comparator(comp, this.options));
168
+ for (const comp of comparators) {
169
+ if (isNullSet(comp)) {
170
+ return [comp]
171
+ }
172
+ rangeMap.set(comp.value, comp);
173
+ }
174
+ if (rangeMap.size > 1 && rangeMap.has('')) {
175
+ rangeMap.delete('');
176
+ }
177
+
178
+ const result = [...rangeMap.values()];
179
+ cache.set(memoKey, result);
180
+ return result
181
+ }
182
+
183
+ intersects (range, options) {
184
+ if (!(range instanceof Range)) {
185
+ throw new TypeError('a Range is required')
186
+ }
187
+
188
+ return this.set.some((thisComparators) => {
189
+ return (
190
+ isSatisfiable(thisComparators, options) &&
191
+ range.set.some((rangeComparators) => {
192
+ return (
193
+ isSatisfiable(rangeComparators, options) &&
194
+ thisComparators.every((thisComparator) => {
195
+ return rangeComparators.every((rangeComparator) => {
196
+ return thisComparator.intersects(rangeComparator, options)
197
+ })
198
+ })
199
+ )
200
+ })
201
+ )
202
+ })
203
+ }
204
+
205
+ // if ANY of the sets match ALL of its comparators, then pass
206
+ test (version) {
207
+ if (!version) {
208
+ return false
209
+ }
210
+
211
+ if (typeof version === 'string') {
212
+ try {
213
+ version = new SemVer(version, this.options);
214
+ } catch (er) {
215
+ return false
216
+ }
217
+ }
218
+
219
+ for (let i = 0; i < this.set.length; i++) {
220
+ if (testSet(this.set[i], version, this.options)) {
221
+ return true
222
+ }
223
+ }
224
+ return false
225
+ }
226
+ }
227
+
228
+ range = Range;
229
+
230
+ const LRU = requireLrucache();
231
+ const cache = new LRU();
232
+
233
+ const parseOptions = requireParseOptions();
234
+ const Comparator = requireComparator();
235
+ const debug = requireDebug();
236
+ const SemVer = requireSemver();
237
+ const {
238
+ safeRe: re,
239
+ t,
240
+ comparatorTrimReplace,
241
+ tildeTrimReplace,
242
+ caretTrimReplace,
243
+ } = requireRe();
244
+ const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = requireConstants();
245
+
246
+ const isNullSet = c => c.value === '<0.0.0-0';
247
+ const isAny = c => c.value === '';
248
+
249
+ // take a set of comparators and determine whether there
250
+ // exists a version which can satisfy it
251
+ const isSatisfiable = (comparators, options) => {
252
+ let result = true;
253
+ const remainingComparators = comparators.slice();
254
+ let testComparator = remainingComparators.pop();
255
+
256
+ while (result && remainingComparators.length) {
257
+ result = remainingComparators.every((otherComparator) => {
258
+ return testComparator.intersects(otherComparator, options)
259
+ });
260
+
261
+ testComparator = remainingComparators.pop();
262
+ }
263
+
264
+ return result
265
+ };
266
+
267
+ // comprised of xranges, tildes, stars, and gtlt's at this point.
268
+ // already replaced the hyphen ranges
269
+ // turn into a set of JUST comparators.
270
+ const parseComparator = (comp, options) => {
271
+ comp = comp.replace(re[t.BUILD], '');
272
+ debug('comp', comp, options);
273
+ comp = replaceCarets(comp, options);
274
+ debug('caret', comp);
275
+ comp = replaceTildes(comp, options);
276
+ debug('tildes', comp);
277
+ comp = replaceXRanges(comp, options);
278
+ debug('xrange', comp);
279
+ comp = replaceStars(comp, options);
280
+ debug('stars', comp);
281
+ return comp
282
+ };
283
+
284
+ const isX = id => !id || id.toLowerCase() === 'x' || id === '*';
285
+
286
+ // ~, ~> --> * (any, kinda silly)
287
+ // ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0-0
288
+ // ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0-0
289
+ // ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0-0
290
+ // ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0
291
+ // ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0
292
+ // ~0.0.1 --> >=0.0.1 <0.1.0-0
293
+ const replaceTildes = (comp, options) => {
294
+ return comp
295
+ .trim()
296
+ .split(/\s+/)
297
+ .map((c) => replaceTilde(c, options))
298
+ .join(' ')
299
+ };
300
+
301
+ const replaceTilde = (comp, options) => {
302
+ const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE];
303
+ return comp.replace(r, (_, M, m, p, pr) => {
304
+ debug('tilde', comp, _, M, m, p, pr);
305
+ let ret;
306
+
307
+ if (isX(M)) {
308
+ ret = '';
309
+ } else if (isX(m)) {
310
+ ret = `>=${M}.0.0 <${+M + 1}.0.0-0`;
311
+ } else if (isX(p)) {
312
+ // ~1.2 == >=1.2.0 <1.3.0-0
313
+ ret = `>=${M}.${m}.0 <${M}.${+m + 1}.0-0`;
314
+ } else if (pr) {
315
+ debug('replaceTilde pr', pr);
316
+ ret = `>=${M}.${m}.${p}-${pr
317
+ } <${M}.${+m + 1}.0-0`;
318
+ } else {
319
+ // ~1.2.3 == >=1.2.3 <1.3.0-0
320
+ ret = `>=${M}.${m}.${p
321
+ } <${M}.${+m + 1}.0-0`;
322
+ }
323
+
324
+ debug('tilde return', ret);
325
+ return ret
326
+ })
327
+ };
328
+
329
+ // ^ --> * (any, kinda silly)
330
+ // ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0-0
331
+ // ^2.0, ^2.0.x --> >=2.0.0 <3.0.0-0
332
+ // ^1.2, ^1.2.x --> >=1.2.0 <2.0.0-0
333
+ // ^1.2.3 --> >=1.2.3 <2.0.0-0
334
+ // ^1.2.0 --> >=1.2.0 <2.0.0-0
335
+ // ^0.0.1 --> >=0.0.1 <0.0.2-0
336
+ // ^0.1.0 --> >=0.1.0 <0.2.0-0
337
+ const replaceCarets = (comp, options) => {
338
+ return comp
339
+ .trim()
340
+ .split(/\s+/)
341
+ .map((c) => replaceCaret(c, options))
342
+ .join(' ')
343
+ };
344
+
345
+ const replaceCaret = (comp, options) => {
346
+ debug('caret', comp, options);
347
+ const r = options.loose ? re[t.CARETLOOSE] : re[t.CARET];
348
+ const z = options.includePrerelease ? '-0' : '';
349
+ return comp.replace(r, (_, M, m, p, pr) => {
350
+ debug('caret', comp, _, M, m, p, pr);
351
+ let ret;
352
+
353
+ if (isX(M)) {
354
+ ret = '';
355
+ } else if (isX(m)) {
356
+ ret = `>=${M}.0.0${z} <${+M + 1}.0.0-0`;
357
+ } else if (isX(p)) {
358
+ if (M === '0') {
359
+ ret = `>=${M}.${m}.0${z} <${M}.${+m + 1}.0-0`;
360
+ } else {
361
+ ret = `>=${M}.${m}.0${z} <${+M + 1}.0.0-0`;
362
+ }
363
+ } else if (pr) {
364
+ debug('replaceCaret pr', pr);
365
+ if (M === '0') {
366
+ if (m === '0') {
367
+ ret = `>=${M}.${m}.${p}-${pr
368
+ } <${M}.${m}.${+p + 1}-0`;
369
+ } else {
370
+ ret = `>=${M}.${m}.${p}-${pr
371
+ } <${M}.${+m + 1}.0-0`;
372
+ }
373
+ } else {
374
+ ret = `>=${M}.${m}.${p}-${pr
375
+ } <${+M + 1}.0.0-0`;
376
+ }
377
+ } else {
378
+ debug('no pr');
379
+ if (M === '0') {
380
+ if (m === '0') {
381
+ ret = `>=${M}.${m}.${p
382
+ }${z} <${M}.${m}.${+p + 1}-0`;
383
+ } else {
384
+ ret = `>=${M}.${m}.${p
385
+ }${z} <${M}.${+m + 1}.0-0`;
386
+ }
387
+ } else {
388
+ ret = `>=${M}.${m}.${p
389
+ } <${+M + 1}.0.0-0`;
390
+ }
391
+ }
392
+
393
+ debug('caret return', ret);
394
+ return ret
395
+ })
396
+ };
397
+
398
+ const replaceXRanges = (comp, options) => {
399
+ debug('replaceXRanges', comp, options);
400
+ return comp
401
+ .split(/\s+/)
402
+ .map((c) => replaceXRange(c, options))
403
+ .join(' ')
404
+ };
405
+
406
+ const replaceXRange = (comp, options) => {
407
+ comp = comp.trim();
408
+ const r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE];
409
+ return comp.replace(r, (ret, gtlt, M, m, p, pr) => {
410
+ debug('xRange', comp, ret, gtlt, M, m, p, pr);
411
+ const xM = isX(M);
412
+ const xm = xM || isX(m);
413
+ const xp = xm || isX(p);
414
+ const anyX = xp;
415
+
416
+ if (gtlt === '=' && anyX) {
417
+ gtlt = '';
418
+ }
419
+
420
+ // if we're including prereleases in the match, then we need
421
+ // to fix this to -0, the lowest possible prerelease value
422
+ pr = options.includePrerelease ? '-0' : '';
423
+
424
+ if (xM) {
425
+ if (gtlt === '>' || gtlt === '<') {
426
+ // nothing is allowed
427
+ ret = '<0.0.0-0';
428
+ } else {
429
+ // nothing is forbidden
430
+ ret = '*';
431
+ }
432
+ } else if (gtlt && anyX) {
433
+ // we know patch is an x, because we have any x at all.
434
+ // replace X with 0
435
+ if (xm) {
436
+ m = 0;
437
+ }
438
+ p = 0;
439
+
440
+ if (gtlt === '>') {
441
+ // >1 => >=2.0.0
442
+ // >1.2 => >=1.3.0
443
+ gtlt = '>=';
444
+ if (xm) {
445
+ M = +M + 1;
446
+ m = 0;
447
+ p = 0;
448
+ } else {
449
+ m = +m + 1;
450
+ p = 0;
451
+ }
452
+ } else if (gtlt === '<=') {
453
+ // <=0.7.x is actually <0.8.0, since any 0.7.x should
454
+ // pass. Similarly, <=7.x is actually <8.0.0, etc.
455
+ gtlt = '<';
456
+ if (xm) {
457
+ M = +M + 1;
458
+ } else {
459
+ m = +m + 1;
460
+ }
461
+ }
462
+
463
+ if (gtlt === '<') {
464
+ pr = '-0';
465
+ }
466
+
467
+ ret = `${gtlt + M}.${m}.${p}${pr}`;
468
+ } else if (xm) {
469
+ ret = `>=${M}.0.0${pr} <${+M + 1}.0.0-0`;
470
+ } else if (xp) {
471
+ ret = `>=${M}.${m}.0${pr
472
+ } <${M}.${+m + 1}.0-0`;
473
+ }
474
+
475
+ debug('xRange return', ret);
476
+
477
+ return ret
478
+ })
479
+ };
480
+
481
+ // Because * is AND-ed with everything else in the comparator,
482
+ // and '' means "any version", just remove the *s entirely.
483
+ const replaceStars = (comp, options) => {
484
+ debug('replaceStars', comp, options);
485
+ // Looseness is ignored here. star is always as loose as it gets!
486
+ return comp
487
+ .trim()
488
+ .replace(re[t.STAR], '')
489
+ };
490
+
491
+ const replaceGTE0 = (comp, options) => {
492
+ debug('replaceGTE0', comp, options);
493
+ return comp
494
+ .trim()
495
+ .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '')
496
+ };
497
+
498
+ // This function is passed to string.replace(re[t.HYPHENRANGE])
499
+ // M, m, patch, prerelease, build
500
+ // 1.2 - 3.4.5 => >=1.2.0 <=3.4.5
501
+ // 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do
502
+ // 1.2 - 3.4 => >=1.2.0 <3.5.0-0
503
+ // TODO build?
504
+ const hyphenReplace = incPr => ($0,
505
+ from, fM, fm, fp, fpr, fb,
506
+ to, tM, tm, tp, tpr) => {
507
+ if (isX(fM)) {
508
+ from = '';
509
+ } else if (isX(fm)) {
510
+ from = `>=${fM}.0.0${incPr ? '-0' : ''}`;
511
+ } else if (isX(fp)) {
512
+ from = `>=${fM}.${fm}.0${incPr ? '-0' : ''}`;
513
+ } else if (fpr) {
514
+ from = `>=${from}`;
515
+ } else {
516
+ from = `>=${from}${incPr ? '-0' : ''}`;
517
+ }
518
+
519
+ if (isX(tM)) {
520
+ to = '';
521
+ } else if (isX(tm)) {
522
+ to = `<${+tM + 1}.0.0-0`;
523
+ } else if (isX(tp)) {
524
+ to = `<${tM}.${+tm + 1}.0-0`;
525
+ } else if (tpr) {
526
+ to = `<=${tM}.${tm}.${tp}-${tpr}`;
527
+ } else if (incPr) {
528
+ to = `<${tM}.${tm}.${+tp + 1}-0`;
529
+ } else {
530
+ to = `<=${to}`;
531
+ }
532
+
533
+ return `${from} ${to}`.trim()
534
+ };
535
+
536
+ const testSet = (set, version, options) => {
537
+ for (let i = 0; i < set.length; i++) {
538
+ if (!set[i].test(version)) {
539
+ return false
540
+ }
541
+ }
542
+
543
+ if (version.prerelease.length && !options.includePrerelease) {
544
+ // Find the set of versions that are allowed to have prereleases
545
+ // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0
546
+ // That should allow `1.2.3-pr.2` to pass.
547
+ // However, `1.2.4-alpha.notready` should NOT be allowed,
548
+ // even though it's within the range set by the comparators.
549
+ for (let i = 0; i < set.length; i++) {
550
+ debug(set[i].semver);
551
+ if (set[i].semver === Comparator.ANY) {
552
+ continue
553
+ }
554
+
555
+ if (set[i].semver.prerelease.length > 0) {
556
+ const allowed = set[i].semver;
557
+ if (allowed.major === version.major &&
558
+ allowed.minor === version.minor &&
559
+ allowed.patch === version.patch) {
560
+ return true
561
+ }
562
+ }
563
+ }
564
+
565
+ // Version has a -pre, but it's not one of the ones we like.
566
+ return false
567
+ }
568
+
569
+ return true
570
+ };
571
+ return range;
572
+ }
573
+
574
+ export { requireRange as __require };