@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.
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 +304 -0
  12. package/dist/commands/diaomao-update.mjs +302 -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,19 @@
1
+ import { __require as requireParse } from './parse.mjs';
2
+
3
+ var clean_1;
4
+ var hasRequiredClean;
5
+
6
+ function requireClean () {
7
+ if (hasRequiredClean) return clean_1;
8
+ hasRequiredClean = 1;
9
+
10
+ const parse = requireParse();
11
+ const clean = (version, options) => {
12
+ const s = parse(version.trim().replace(/^[=v]+/, ''), options);
13
+ return s ? s.version : null
14
+ };
15
+ clean_1 = clean;
16
+ return clean_1;
17
+ }
18
+
19
+ export { requireClean as __require };
@@ -0,0 +1,72 @@
1
+ 'use strict';
2
+
3
+ var eq = require('./eq.js');
4
+ var neq = require('./neq.js');
5
+ var gt = require('./gt.js');
6
+ var gte = require('./gte.js');
7
+ var lt = require('./lt.js');
8
+ var lte = require('./lte.js');
9
+
10
+ var cmp_1;
11
+ var hasRequiredCmp;
12
+
13
+ function requireCmp () {
14
+ if (hasRequiredCmp) return cmp_1;
15
+ hasRequiredCmp = 1;
16
+
17
+ const eq$1 = eq.__require();
18
+ const neq$1 = neq.__require();
19
+ const gt$1 = gt.__require();
20
+ const gte$1 = gte.__require();
21
+ const lt$1 = lt.__require();
22
+ const lte$1 = lte.__require();
23
+
24
+ const cmp = (a, op, b, loose) => {
25
+ switch (op) {
26
+ case '===':
27
+ if (typeof a === 'object') {
28
+ a = a.version;
29
+ }
30
+ if (typeof b === 'object') {
31
+ b = b.version;
32
+ }
33
+ return a === b
34
+
35
+ case '!==':
36
+ if (typeof a === 'object') {
37
+ a = a.version;
38
+ }
39
+ if (typeof b === 'object') {
40
+ b = b.version;
41
+ }
42
+ return a !== b
43
+
44
+ case '':
45
+ case '=':
46
+ case '==':
47
+ return eq$1(a, b, loose)
48
+
49
+ case '!=':
50
+ return neq$1(a, b, loose)
51
+
52
+ case '>':
53
+ return gt$1(a, b, loose)
54
+
55
+ case '>=':
56
+ return gte$1(a, b, loose)
57
+
58
+ case '<':
59
+ return lt$1(a, b, loose)
60
+
61
+ case '<=':
62
+ return lte$1(a, b, loose)
63
+
64
+ default:
65
+ throw new TypeError(`Invalid operator: ${op}`)
66
+ }
67
+ };
68
+ cmp_1 = cmp;
69
+ return cmp_1;
70
+ }
71
+
72
+ exports.__require = requireCmp;
@@ -0,0 +1,70 @@
1
+ import { __require as requireEq } from './eq.mjs';
2
+ import { __require as requireNeq } from './neq.mjs';
3
+ import { __require as requireGt } from './gt.mjs';
4
+ import { __require as requireGte } from './gte.mjs';
5
+ import { __require as requireLt } from './lt.mjs';
6
+ import { __require as requireLte } from './lte.mjs';
7
+
8
+ var cmp_1;
9
+ var hasRequiredCmp;
10
+
11
+ function requireCmp () {
12
+ if (hasRequiredCmp) return cmp_1;
13
+ hasRequiredCmp = 1;
14
+
15
+ const eq = requireEq();
16
+ const neq = requireNeq();
17
+ const gt = requireGt();
18
+ const gte = requireGte();
19
+ const lt = requireLt();
20
+ const lte = requireLte();
21
+
22
+ const cmp = (a, op, b, loose) => {
23
+ switch (op) {
24
+ case '===':
25
+ if (typeof a === 'object') {
26
+ a = a.version;
27
+ }
28
+ if (typeof b === 'object') {
29
+ b = b.version;
30
+ }
31
+ return a === b
32
+
33
+ case '!==':
34
+ if (typeof a === 'object') {
35
+ a = a.version;
36
+ }
37
+ if (typeof b === 'object') {
38
+ b = b.version;
39
+ }
40
+ return a !== b
41
+
42
+ case '':
43
+ case '=':
44
+ case '==':
45
+ return eq(a, b, loose)
46
+
47
+ case '!=':
48
+ return neq(a, b, loose)
49
+
50
+ case '>':
51
+ return gt(a, b, loose)
52
+
53
+ case '>=':
54
+ return gte(a, b, loose)
55
+
56
+ case '<':
57
+ return lt(a, b, loose)
58
+
59
+ case '<=':
60
+ return lte(a, b, loose)
61
+
62
+ default:
63
+ throw new TypeError(`Invalid operator: ${op}`)
64
+ }
65
+ };
66
+ cmp_1 = cmp;
67
+ return cmp_1;
68
+ }
69
+
70
+ export { requireCmp as __require };
@@ -0,0 +1,77 @@
1
+ 'use strict';
2
+
3
+ var semver = require('../classes/semver.js');
4
+ var parse = require('./parse.js');
5
+ var re = require('../internal/re.js');
6
+
7
+ var coerce_1;
8
+ var hasRequiredCoerce;
9
+
10
+ function requireCoerce () {
11
+ if (hasRequiredCoerce) return coerce_1;
12
+ hasRequiredCoerce = 1;
13
+
14
+ const SemVer = semver.__require();
15
+ const parse$1 = parse.__require();
16
+ const { safeRe: re$1, t } = re.__require();
17
+
18
+ const coerce = (version, options) => {
19
+ if (version instanceof SemVer) {
20
+ return version
21
+ }
22
+
23
+ if (typeof version === 'number') {
24
+ version = String(version);
25
+ }
26
+
27
+ if (typeof version !== 'string') {
28
+ return null
29
+ }
30
+
31
+ options = options || {};
32
+
33
+ let match = null;
34
+ if (!options.rtl) {
35
+ match = version.match(options.includePrerelease ? re$1[t.COERCEFULL] : re$1[t.COERCE]);
36
+ } else {
37
+ // Find the right-most coercible string that does not share
38
+ // a terminus with a more left-ward coercible string.
39
+ // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'
40
+ // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4'
41
+ //
42
+ // Walk through the string checking with a /g regexp
43
+ // Manually set the index so as to pick up overlapping matches.
44
+ // Stop when we get a match that ends at the string end, since no
45
+ // coercible string can be more right-ward without the same terminus.
46
+ const coerceRtlRegex = options.includePrerelease ? re$1[t.COERCERTLFULL] : re$1[t.COERCERTL];
47
+ let next;
48
+ while ((next = coerceRtlRegex.exec(version)) &&
49
+ (!match || match.index + match[0].length !== version.length)
50
+ ) {
51
+ if (!match ||
52
+ next.index + next[0].length !== match.index + match[0].length) {
53
+ match = next;
54
+ }
55
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
56
+ }
57
+ // leave it in a clean state
58
+ coerceRtlRegex.lastIndex = -1;
59
+ }
60
+
61
+ if (match === null) {
62
+ return null
63
+ }
64
+
65
+ const major = match[2];
66
+ const minor = match[3] || '0';
67
+ const patch = match[4] || '0';
68
+ const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '';
69
+ const build = options.includePrerelease && match[6] ? `+${match[6]}` : '';
70
+
71
+ return parse$1(`${major}.${minor}.${patch}${prerelease}${build}`, options)
72
+ };
73
+ coerce_1 = coerce;
74
+ return coerce_1;
75
+ }
76
+
77
+ exports.__require = requireCoerce;
@@ -0,0 +1,75 @@
1
+ import { __require as requireSemver } from '../classes/semver.mjs';
2
+ import { __require as requireParse } from './parse.mjs';
3
+ import { __require as requireRe } from '../internal/re.mjs';
4
+
5
+ var coerce_1;
6
+ var hasRequiredCoerce;
7
+
8
+ function requireCoerce () {
9
+ if (hasRequiredCoerce) return coerce_1;
10
+ hasRequiredCoerce = 1;
11
+
12
+ const SemVer = requireSemver();
13
+ const parse = requireParse();
14
+ const { safeRe: re, t } = requireRe();
15
+
16
+ const coerce = (version, options) => {
17
+ if (version instanceof SemVer) {
18
+ return version
19
+ }
20
+
21
+ if (typeof version === 'number') {
22
+ version = String(version);
23
+ }
24
+
25
+ if (typeof version !== 'string') {
26
+ return null
27
+ }
28
+
29
+ options = options || {};
30
+
31
+ let match = null;
32
+ if (!options.rtl) {
33
+ match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]);
34
+ } else {
35
+ // Find the right-most coercible string that does not share
36
+ // a terminus with a more left-ward coercible string.
37
+ // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'
38
+ // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4'
39
+ //
40
+ // Walk through the string checking with a /g regexp
41
+ // Manually set the index so as to pick up overlapping matches.
42
+ // Stop when we get a match that ends at the string end, since no
43
+ // coercible string can be more right-ward without the same terminus.
44
+ const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL];
45
+ let next;
46
+ while ((next = coerceRtlRegex.exec(version)) &&
47
+ (!match || match.index + match[0].length !== version.length)
48
+ ) {
49
+ if (!match ||
50
+ next.index + next[0].length !== match.index + match[0].length) {
51
+ match = next;
52
+ }
53
+ coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length;
54
+ }
55
+ // leave it in a clean state
56
+ coerceRtlRegex.lastIndex = -1;
57
+ }
58
+
59
+ if (match === null) {
60
+ return null
61
+ }
62
+
63
+ const major = match[2];
64
+ const minor = match[3] || '0';
65
+ const patch = match[4] || '0';
66
+ const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '';
67
+ const build = options.includePrerelease && match[6] ? `+${match[6]}` : '';
68
+
69
+ return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options)
70
+ };
71
+ coerce_1 = coerce;
72
+ return coerce_1;
73
+ }
74
+
75
+ export { requireCoerce as __require };
@@ -0,0 +1,22 @@
1
+ 'use strict';
2
+
3
+ var semver = require('../classes/semver.js');
4
+
5
+ var compareBuild_1;
6
+ var hasRequiredCompareBuild;
7
+
8
+ function requireCompareBuild () {
9
+ if (hasRequiredCompareBuild) return compareBuild_1;
10
+ hasRequiredCompareBuild = 1;
11
+
12
+ const SemVer = semver.__require();
13
+ const compareBuild = (a, b, loose) => {
14
+ const versionA = new SemVer(a, loose);
15
+ const versionB = new SemVer(b, loose);
16
+ return versionA.compare(versionB) || versionA.compareBuild(versionB)
17
+ };
18
+ compareBuild_1 = compareBuild;
19
+ return compareBuild_1;
20
+ }
21
+
22
+ exports.__require = requireCompareBuild;
@@ -0,0 +1,20 @@
1
+ import { __require as requireSemver } from '../classes/semver.mjs';
2
+
3
+ var compareBuild_1;
4
+ var hasRequiredCompareBuild;
5
+
6
+ function requireCompareBuild () {
7
+ if (hasRequiredCompareBuild) return compareBuild_1;
8
+ hasRequiredCompareBuild = 1;
9
+
10
+ const SemVer = requireSemver();
11
+ const compareBuild = (a, b, loose) => {
12
+ const versionA = new SemVer(a, loose);
13
+ const versionB = new SemVer(b, loose);
14
+ return versionA.compare(versionB) || versionA.compareBuild(versionB)
15
+ };
16
+ compareBuild_1 = compareBuild;
17
+ return compareBuild_1;
18
+ }
19
+
20
+ export { requireCompareBuild as __require };
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ var compare = require('./compare.js');
4
+
5
+ var compareLoose_1;
6
+ var hasRequiredCompareLoose;
7
+
8
+ function requireCompareLoose () {
9
+ if (hasRequiredCompareLoose) return compareLoose_1;
10
+ hasRequiredCompareLoose = 1;
11
+
12
+ const compare$1 = compare.__require();
13
+ const compareLoose = (a, b) => compare$1(a, b, true);
14
+ compareLoose_1 = compareLoose;
15
+ return compareLoose_1;
16
+ }
17
+
18
+ exports.__require = requireCompareLoose;
@@ -0,0 +1,16 @@
1
+ import { __require as requireCompare } from './compare.mjs';
2
+
3
+ var compareLoose_1;
4
+ var hasRequiredCompareLoose;
5
+
6
+ function requireCompareLoose () {
7
+ if (hasRequiredCompareLoose) return compareLoose_1;
8
+ hasRequiredCompareLoose = 1;
9
+
10
+ const compare = requireCompare();
11
+ const compareLoose = (a, b) => compare(a, b, true);
12
+ compareLoose_1 = compareLoose;
13
+ return compareLoose_1;
14
+ }
15
+
16
+ export { requireCompareLoose as __require };
@@ -0,0 +1,20 @@
1
+ 'use strict';
2
+
3
+ var semver = require('../classes/semver.js');
4
+
5
+ var compare_1;
6
+ var hasRequiredCompare;
7
+
8
+ function requireCompare () {
9
+ if (hasRequiredCompare) return compare_1;
10
+ hasRequiredCompare = 1;
11
+
12
+ const SemVer = semver.__require();
13
+ const compare = (a, b, loose) =>
14
+ new SemVer(a, loose).compare(new SemVer(b, loose));
15
+
16
+ compare_1 = compare;
17
+ return compare_1;
18
+ }
19
+
20
+ exports.__require = requireCompare;
@@ -0,0 +1,18 @@
1
+ import { __require as requireSemver } from '../classes/semver.mjs';
2
+
3
+ var compare_1;
4
+ var hasRequiredCompare;
5
+
6
+ function requireCompare () {
7
+ if (hasRequiredCompare) return compare_1;
8
+ hasRequiredCompare = 1;
9
+
10
+ const SemVer = requireSemver();
11
+ const compare = (a, b, loose) =>
12
+ new SemVer(a, loose).compare(new SemVer(b, loose));
13
+
14
+ compare_1 = compare;
15
+ return compare_1;
16
+ }
17
+
18
+ export { requireCompare as __require };
@@ -0,0 +1,73 @@
1
+ 'use strict';
2
+
3
+ var parse = require('./parse.js');
4
+
5
+ var diff_1;
6
+ var hasRequiredDiff;
7
+
8
+ function requireDiff () {
9
+ if (hasRequiredDiff) return diff_1;
10
+ hasRequiredDiff = 1;
11
+
12
+ const parse$1 = parse.__require();
13
+
14
+ const diff = (version1, version2) => {
15
+ const v1 = parse$1(version1, null, true);
16
+ const v2 = parse$1(version2, null, true);
17
+ const comparison = v1.compare(v2);
18
+
19
+ if (comparison === 0) {
20
+ return null
21
+ }
22
+
23
+ const v1Higher = comparison > 0;
24
+ const highVersion = v1Higher ? v1 : v2;
25
+ const lowVersion = v1Higher ? v2 : v1;
26
+ const highHasPre = !!highVersion.prerelease.length;
27
+ const lowHasPre = !!lowVersion.prerelease.length;
28
+
29
+ if (lowHasPre && !highHasPre) {
30
+ // Going from prerelease -> no prerelease requires some special casing
31
+
32
+ // If the low version has only a major, then it will always be a major
33
+ // Some examples:
34
+ // 1.0.0-1 -> 1.0.0
35
+ // 1.0.0-1 -> 1.1.1
36
+ // 1.0.0-1 -> 2.0.0
37
+ if (!lowVersion.patch && !lowVersion.minor) {
38
+ return 'major'
39
+ }
40
+
41
+ // If the main part has no difference
42
+ if (lowVersion.compareMain(highVersion) === 0) {
43
+ if (lowVersion.minor && !lowVersion.patch) {
44
+ return 'minor'
45
+ }
46
+ return 'patch'
47
+ }
48
+ }
49
+
50
+ // add the `pre` prefix if we are going to a prerelease version
51
+ const prefix = highHasPre ? 'pre' : '';
52
+
53
+ if (v1.major !== v2.major) {
54
+ return prefix + 'major'
55
+ }
56
+
57
+ if (v1.minor !== v2.minor) {
58
+ return prefix + 'minor'
59
+ }
60
+
61
+ if (v1.patch !== v2.patch) {
62
+ return prefix + 'patch'
63
+ }
64
+
65
+ // high and low are prereleases
66
+ return 'prerelease'
67
+ };
68
+
69
+ diff_1 = diff;
70
+ return diff_1;
71
+ }
72
+
73
+ exports.__require = requireDiff;
@@ -0,0 +1,71 @@
1
+ import { __require as requireParse } from './parse.mjs';
2
+
3
+ var diff_1;
4
+ var hasRequiredDiff;
5
+
6
+ function requireDiff () {
7
+ if (hasRequiredDiff) return diff_1;
8
+ hasRequiredDiff = 1;
9
+
10
+ const parse = requireParse();
11
+
12
+ const diff = (version1, version2) => {
13
+ const v1 = parse(version1, null, true);
14
+ const v2 = parse(version2, null, true);
15
+ const comparison = v1.compare(v2);
16
+
17
+ if (comparison === 0) {
18
+ return null
19
+ }
20
+
21
+ const v1Higher = comparison > 0;
22
+ const highVersion = v1Higher ? v1 : v2;
23
+ const lowVersion = v1Higher ? v2 : v1;
24
+ const highHasPre = !!highVersion.prerelease.length;
25
+ const lowHasPre = !!lowVersion.prerelease.length;
26
+
27
+ if (lowHasPre && !highHasPre) {
28
+ // Going from prerelease -> no prerelease requires some special casing
29
+
30
+ // If the low version has only a major, then it will always be a major
31
+ // Some examples:
32
+ // 1.0.0-1 -> 1.0.0
33
+ // 1.0.0-1 -> 1.1.1
34
+ // 1.0.0-1 -> 2.0.0
35
+ if (!lowVersion.patch && !lowVersion.minor) {
36
+ return 'major'
37
+ }
38
+
39
+ // If the main part has no difference
40
+ if (lowVersion.compareMain(highVersion) === 0) {
41
+ if (lowVersion.minor && !lowVersion.patch) {
42
+ return 'minor'
43
+ }
44
+ return 'patch'
45
+ }
46
+ }
47
+
48
+ // add the `pre` prefix if we are going to a prerelease version
49
+ const prefix = highHasPre ? 'pre' : '';
50
+
51
+ if (v1.major !== v2.major) {
52
+ return prefix + 'major'
53
+ }
54
+
55
+ if (v1.minor !== v2.minor) {
56
+ return prefix + 'minor'
57
+ }
58
+
59
+ if (v1.patch !== v2.patch) {
60
+ return prefix + 'patch'
61
+ }
62
+
63
+ // high and low are prereleases
64
+ return 'prerelease'
65
+ };
66
+
67
+ diff_1 = diff;
68
+ return diff_1;
69
+ }
70
+
71
+ export { requireDiff as __require };
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ var compare = require('./compare.js');
4
+
5
+ var eq_1;
6
+ var hasRequiredEq;
7
+
8
+ function requireEq () {
9
+ if (hasRequiredEq) return eq_1;
10
+ hasRequiredEq = 1;
11
+
12
+ const compare$1 = compare.__require();
13
+ const eq = (a, b, loose) => compare$1(a, b, loose) === 0;
14
+ eq_1 = eq;
15
+ return eq_1;
16
+ }
17
+
18
+ exports.__require = requireEq;
@@ -0,0 +1,16 @@
1
+ import { __require as requireCompare } from './compare.mjs';
2
+
3
+ var eq_1;
4
+ var hasRequiredEq;
5
+
6
+ function requireEq () {
7
+ if (hasRequiredEq) return eq_1;
8
+ hasRequiredEq = 1;
9
+
10
+ const compare = requireCompare();
11
+ const eq = (a, b, loose) => compare(a, b, loose) === 0;
12
+ eq_1 = eq;
13
+ return eq_1;
14
+ }
15
+
16
+ export { requireEq as __require };
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ var compare = require('./compare.js');
4
+
5
+ var gt_1;
6
+ var hasRequiredGt;
7
+
8
+ function requireGt () {
9
+ if (hasRequiredGt) return gt_1;
10
+ hasRequiredGt = 1;
11
+
12
+ const compare$1 = compare.__require();
13
+ const gt = (a, b, loose) => compare$1(a, b, loose) > 0;
14
+ gt_1 = gt;
15
+ return gt_1;
16
+ }
17
+
18
+ exports.__require = requireGt;
@@ -0,0 +1,16 @@
1
+ import { __require as requireCompare } from './compare.mjs';
2
+
3
+ var gt_1;
4
+ var hasRequiredGt;
5
+
6
+ function requireGt () {
7
+ if (hasRequiredGt) return gt_1;
8
+ hasRequiredGt = 1;
9
+
10
+ const compare = requireCompare();
11
+ const gt = (a, b, loose) => compare(a, b, loose) > 0;
12
+ gt_1 = gt;
13
+ return gt_1;
14
+ }
15
+
16
+ export { requireGt as __require };
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ var compare = require('./compare.js');
4
+
5
+ var gte_1;
6
+ var hasRequiredGte;
7
+
8
+ function requireGte () {
9
+ if (hasRequiredGte) return gte_1;
10
+ hasRequiredGte = 1;
11
+
12
+ const compare$1 = compare.__require();
13
+ const gte = (a, b, loose) => compare$1(a, b, loose) >= 0;
14
+ gte_1 = gte;
15
+ return gte_1;
16
+ }
17
+
18
+ exports.__require = requireGte;
@@ -0,0 +1,16 @@
1
+ import { __require as requireCompare } from './compare.mjs';
2
+
3
+ var gte_1;
4
+ var hasRequiredGte;
5
+
6
+ function requireGte () {
7
+ if (hasRequiredGte) return gte_1;
8
+ hasRequiredGte = 1;
9
+
10
+ const compare = requireCompare();
11
+ const gte = (a, b, loose) => compare(a, b, loose) >= 0;
12
+ gte_1 = gte;
13
+ return gte_1;
14
+ }
15
+
16
+ export { requireGte as __require };