@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,334 @@
1
+ import fs from 'fs';
2
+ import path from 'path';
3
+ import https from 'https';
4
+ import { parse, stringify } from 'yaml';
5
+ import semver from 'semver';
6
+
7
+ const DEPENDENCY_SECTIONS = [
8
+ 'dependencies',
9
+ 'devDependencies',
10
+ 'peerDependencies',
11
+ 'optionalDependencies'
12
+ ];
13
+ function fetchText(url) {
14
+ return new Promise((resolve, reject) => {
15
+ const request = https.get(url, (response) => {
16
+ const statusCode = response.statusCode ?? 0;
17
+ if (statusCode >= 300 && statusCode < 400 && response.headers.location) {
18
+ response.resume();
19
+ fetchText(response.headers.location).then(resolve).catch(reject);
20
+ return;
21
+ }
22
+ if (statusCode < 200 || statusCode >= 300) {
23
+ response.resume();
24
+ reject(new Error(`failed to fetch update source: ${statusCode}`));
25
+ return;
26
+ }
27
+ let body = '';
28
+ response.setEncoding('utf8');
29
+ response.on('data', (chunk) => {
30
+ body += chunk;
31
+ });
32
+ response.on('end', () => resolve(body));
33
+ });
34
+ request.on('error', (error) => reject(error));
35
+ });
36
+ }
37
+ function findNearestFile(startDir, fileName) {
38
+ let currentDir = startDir;
39
+ while (true) {
40
+ const candidate = path.join(currentDir, fileName);
41
+ if (fs.existsSync(candidate)) {
42
+ return candidate;
43
+ }
44
+ const parentDir = path.dirname(currentDir);
45
+ if (parentDir === currentDir) {
46
+ return null;
47
+ }
48
+ currentDir = parentDir;
49
+ }
50
+ }
51
+ function stripProtocolPrefix(version) {
52
+ const protocolPrefixes = ['workspace:', 'npm:'];
53
+ for (const prefix of protocolPrefixes) {
54
+ if (version.startsWith(prefix)) {
55
+ return version.slice(prefix.length);
56
+ }
57
+ }
58
+ return version;
59
+ }
60
+ function isTagVersion(version) {
61
+ return version === 'latest';
62
+ }
63
+ function getComparableMinVersion(version) {
64
+ try {
65
+ return semver.minVersion(version);
66
+ }
67
+ catch {
68
+ return null;
69
+ }
70
+ }
71
+ function compareVersionSpecs(currentVersion, targetVersion) {
72
+ const normalizedCurrent = stripProtocolPrefix(currentVersion);
73
+ const normalizedTarget = stripProtocolPrefix(targetVersion);
74
+ if (isTagVersion(normalizedCurrent) || isTagVersion(normalizedTarget)) {
75
+ return 'uncomparable';
76
+ }
77
+ if (currentVersion === targetVersion) {
78
+ return 'same';
79
+ }
80
+ if (normalizedCurrent === normalizedTarget) {
81
+ return 'same';
82
+ }
83
+ const currentMin = getComparableMinVersion(normalizedCurrent);
84
+ const targetMin = getComparableMinVersion(normalizedTarget);
85
+ if (currentMin && targetMin) {
86
+ const comparison = semver.compare(currentMin, targetMin);
87
+ if (comparison > 0) {
88
+ return 'newer';
89
+ }
90
+ if (comparison === 0) {
91
+ return 'same';
92
+ }
93
+ return 'update';
94
+ }
95
+ return 'uncomparable';
96
+ }
97
+ function extractCatalog(workspaceContent) {
98
+ const parsed = parse(workspaceContent);
99
+ const catalog = parsed?.catalog;
100
+ if (!catalog || typeof catalog !== 'object') {
101
+ throw new Error('catalog section not found in remote pnpm-workspace.yaml');
102
+ }
103
+ return catalog;
104
+ }
105
+ function loadJsonFile(filePath) {
106
+ return JSON.parse(fs.readFileSync(filePath, 'utf8'));
107
+ }
108
+ function loadYamlFile(filePath) {
109
+ return parse(fs.readFileSync(filePath, 'utf8'));
110
+ }
111
+ function saveYamlFile(filePath, data) {
112
+ fs.writeFileSync(filePath, stringify(data), 'utf8');
113
+ }
114
+ function saveJsonFile(filePath, data) {
115
+ fs.writeFileSync(filePath, `${JSON.stringify(data, null, 2)}\n`, 'utf8');
116
+ }
117
+ function renderTable(rows, headers) {
118
+ const widths = [
119
+ headers[0].length,
120
+ headers[1].length,
121
+ headers[2].length,
122
+ headers[3]?.length ?? 0
123
+ ];
124
+ for (const row of rows) {
125
+ widths[0] = Math.max(widths[0], row.packageName.length);
126
+ widths[1] = Math.max(widths[1], row.currentVersion.length);
127
+ widths[2] = Math.max(widths[2], row.targetVersion.length);
128
+ if ('reason' in row) {
129
+ widths[3] = Math.max(widths[3], row.reason.length);
130
+ }
131
+ }
132
+ const hasFourthColumn = Boolean(headers[3]);
133
+ const border = hasFourthColumn
134
+ ? `┌${'─'.repeat(widths[0] + 2)}┬${'─'.repeat(widths[1] + 2)}┬${'─'.repeat(widths[2] + 2)}┬${'─'.repeat(widths[3] + 2)}┐`
135
+ : `┌${'─'.repeat(widths[0] + 2)}┬${'─'.repeat(widths[1] + 2)}┬${'─'.repeat(widths[2] + 2)}┐`;
136
+ const separator = hasFourthColumn
137
+ ? `├${'─'.repeat(widths[0] + 2)}┼${'─'.repeat(widths[1] + 2)}┼${'─'.repeat(widths[2] + 2)}┼${'─'.repeat(widths[3] + 2)}┤`
138
+ : `├${'─'.repeat(widths[0] + 2)}┼${'─'.repeat(widths[1] + 2)}┼${'─'.repeat(widths[2] + 2)}┤`;
139
+ const footer = hasFourthColumn
140
+ ? `└${'─'.repeat(widths[0] + 2)}┴${'─'.repeat(widths[1] + 2)}┴${'─'.repeat(widths[2] + 2)}┴${'─'.repeat(widths[3] + 2)}┘`
141
+ : `└${'─'.repeat(widths[0] + 2)}┴${'─'.repeat(widths[1] + 2)}┴${'─'.repeat(widths[2] + 2)}┘`;
142
+ const formatRow = (columns) => {
143
+ if (hasFourthColumn) {
144
+ return `│ ${columns[0].padEnd(widths[0])} │ ${columns[1].padEnd(widths[1])} │ ${columns[2].padEnd(widths[2])} │ ${columns[3].padEnd(widths[3])} │`;
145
+ }
146
+ return `│ ${columns[0].padEnd(widths[0])} │ ${columns[1].padEnd(widths[1])} │ ${columns[2].padEnd(widths[2])} │`;
147
+ };
148
+ return [
149
+ border,
150
+ formatRow(hasFourthColumn ? [headers[0], headers[1], headers[2], headers[3] || ''] : [headers[0], headers[1], headers[2]]),
151
+ separator,
152
+ ...rows.map((row) => formatRow('reason' in row
153
+ ? [row.packageName, row.currentVersion, row.targetVersion, row.reason]
154
+ : [row.packageName, row.currentVersion, row.targetVersion])),
155
+ footer
156
+ ].join('\n');
157
+ }
158
+ function printSkipDetails(skipRows, compactLog) {
159
+ const newerCount = skipRows.filter((row) => row.reason === 'skipped-newer').length;
160
+ if (compactLog) {
161
+ if (newerCount > 0) {
162
+ console.log(`Skipped ${newerCount} package(s) because local versions are newer than the source.`);
163
+ }
164
+ return;
165
+ }
166
+ if (skipRows.length === 0) {
167
+ return;
168
+ }
169
+ console.log('\nSkipped:');
170
+ console.log(renderTable(skipRows, ['Package', 'Before', 'After', 'Reason']));
171
+ }
172
+ async function diaomaoUpdate(config, cwd = typeof process !== 'undefined' ? process.cwd() : '.') {
173
+ const updateConfig = config.diaomaoUpdate || {};
174
+ const sourceUrl = updateConfig.sourceUrl || '';
175
+ const allowedPackages = updateConfig.allowedPackages || [];
176
+ const compactLog = updateConfig.compactLog !== false;
177
+ if (!sourceUrl) {
178
+ throw new Error('diaomaoUpdate.sourceUrl is required');
179
+ }
180
+ if (!Array.isArray(allowedPackages) || allowedPackages.length === 0) {
181
+ throw new Error('diaomaoUpdate.allowedPackages must contain at least one package name');
182
+ }
183
+ const packageJsonPath = path.join(cwd, 'package.json');
184
+ if (!fs.existsSync(packageJsonPath)) {
185
+ throw new Error(`package.json not found in ${cwd}`);
186
+ }
187
+ const localWorkspacePath = findNearestFile(cwd, 'pnpm-workspace.yaml');
188
+ const packageJson = loadJsonFile(packageJsonPath);
189
+ const localWorkspace = localWorkspacePath ? loadYamlFile(localWorkspacePath) : null;
190
+ const localCatalog = localWorkspace?.catalog || {};
191
+ console.log(`Reading update source: ${sourceUrl}`);
192
+ const remoteWorkspaceContent = await fetchText(sourceUrl);
193
+ const remoteCatalog = extractCatalog(remoteWorkspaceContent);
194
+ const updatedRows = [];
195
+ const skipRows = [];
196
+ let packageJsonChanged = false;
197
+ let workspaceChanged = false;
198
+ for (const packageName of allowedPackages) {
199
+ const targetVersion = remoteCatalog[packageName];
200
+ if (!targetVersion) {
201
+ continue;
202
+ }
203
+ let matched = false;
204
+ for (const section of DEPENDENCY_SECTIONS) {
205
+ const dependencies = packageJson[section];
206
+ if (!dependencies || !(packageName in dependencies)) {
207
+ continue;
208
+ }
209
+ matched = true;
210
+ const currentSpecifier = dependencies[packageName];
211
+ if (currentSpecifier.startsWith('workspace:')) {
212
+ skipRows.push({
213
+ packageName,
214
+ currentVersion: currentSpecifier,
215
+ targetVersion,
216
+ reason: 'skipped-workspace'
217
+ });
218
+ continue;
219
+ }
220
+ if (currentSpecifier === 'catalog:') {
221
+ const localCatalogVersion = localCatalog[packageName];
222
+ if (!localCatalogVersion) {
223
+ skipRows.push({
224
+ packageName,
225
+ currentVersion: currentSpecifier,
226
+ targetVersion,
227
+ reason: 'skipped-unresolved-catalog'
228
+ });
229
+ continue;
230
+ }
231
+ const decision = compareVersionSpecs(localCatalogVersion, targetVersion);
232
+ if (decision === 'newer') {
233
+ skipRows.push({
234
+ packageName,
235
+ currentVersion: localCatalogVersion,
236
+ targetVersion,
237
+ reason: 'skipped-newer'
238
+ });
239
+ continue;
240
+ }
241
+ if (decision === 'same') {
242
+ skipRows.push({
243
+ packageName,
244
+ currentVersion: localCatalogVersion,
245
+ targetVersion,
246
+ reason: 'skipped-same'
247
+ });
248
+ continue;
249
+ }
250
+ if (decision === 'uncomparable') {
251
+ skipRows.push({
252
+ packageName,
253
+ currentVersion: localCatalogVersion,
254
+ targetVersion,
255
+ reason: 'skipped-uncomparable'
256
+ });
257
+ continue;
258
+ }
259
+ localCatalog[packageName] = targetVersion;
260
+ workspaceChanged = true;
261
+ updatedRows.push({
262
+ packageName,
263
+ currentVersion: localCatalogVersion,
264
+ targetVersion
265
+ });
266
+ continue;
267
+ }
268
+ const decision = compareVersionSpecs(currentSpecifier, targetVersion);
269
+ if (decision === 'newer') {
270
+ skipRows.push({
271
+ packageName,
272
+ currentVersion: currentSpecifier,
273
+ targetVersion,
274
+ reason: 'skipped-newer'
275
+ });
276
+ continue;
277
+ }
278
+ if (decision === 'same') {
279
+ skipRows.push({
280
+ packageName,
281
+ currentVersion: currentSpecifier,
282
+ targetVersion,
283
+ reason: 'skipped-same'
284
+ });
285
+ continue;
286
+ }
287
+ if (decision === 'uncomparable') {
288
+ skipRows.push({
289
+ packageName,
290
+ currentVersion: currentSpecifier,
291
+ targetVersion,
292
+ reason: 'skipped-uncomparable'
293
+ });
294
+ continue;
295
+ }
296
+ dependencies[packageName] = targetVersion;
297
+ packageJsonChanged = true;
298
+ updatedRows.push({
299
+ packageName,
300
+ currentVersion: currentSpecifier,
301
+ targetVersion
302
+ });
303
+ }
304
+ if (!matched) {
305
+ skipRows.push({
306
+ packageName,
307
+ currentVersion: '-',
308
+ targetVersion,
309
+ reason: 'skipped-missing'
310
+ });
311
+ }
312
+ }
313
+ if (workspaceChanged && localWorkspacePath && localWorkspace) {
314
+ localWorkspace.catalog = localCatalog;
315
+ saveYamlFile(localWorkspacePath, localWorkspace);
316
+ }
317
+ if (packageJsonChanged) {
318
+ saveJsonFile(packageJsonPath, packageJson);
319
+ }
320
+ if (updatedRows.length > 0) {
321
+ console.log('\nResults:');
322
+ console.log(renderTable(updatedRows, ['Package', 'Before', 'After']));
323
+ }
324
+ else {
325
+ console.log('\nResults:');
326
+ console.log('No package versions were updated.');
327
+ }
328
+ console.log('');
329
+ console.log(`Updated ${updatedRows.length} package version(s).`);
330
+ printSkipDetails(skipRows, compactLog);
331
+ return 0;
332
+ }
333
+
334
+ export { diaomaoUpdate };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAkB,gBAAgB,EAAyB,MAAM,4BAA4B,CAAA;AA6FpG;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,GAAE,MAA6D,EAAE,QAAQ,GAAE,OAAO,CAAC,gBAAgB,CAAM,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,gBAAgB,CAkC5K;AA2CD;;GAEG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAY7D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAkB,gBAAgB,EAAyB,MAAM,4BAA4B,CAAA;AA6FpG;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,GAAE,MAA6D,EAAE,QAAQ,GAAE,OAAO,CAAC,gBAAgB,CAAM,EAAE,OAAO,CAAC,EAAE,OAAO,GAAG,gBAAgB,CAkC5K;AAkDD;;GAEG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAgB7D"}
@@ -152,6 +152,12 @@ function printConfigInfo(config, sources, cwd) {
152
152
  console.log('\n📤 output:');
153
153
  console.log(` logDir: ${config.output.logDir}`);
154
154
  console.log(` verbose: ${config.output.verbose}`);
155
+ if (config.diaomaoUpdate) {
156
+ console.log('\n📦 diaomaoUpdate:');
157
+ console.log(` sourceUrl: ${config.diaomaoUpdate.sourceUrl || 'not set'}`);
158
+ console.log(` allowedPackages: [${(config.diaomaoUpdate.allowedPackages || []).join(', ')}]`);
159
+ console.log(` compactLog: ${config.diaomaoUpdate.compactLog !== false}`);
160
+ }
155
161
  console.log('');
156
162
  }
157
163
  /**
@@ -167,6 +173,9 @@ function validateConfig(config) {
167
173
  if (config.scan.include.length === 0) {
168
174
  throw new Error('at least one scan path is required');
169
175
  }
176
+ if (config.diaomaoUpdate?.allowedPackages && !Array.isArray(config.diaomaoUpdate.allowedPackages)) {
177
+ throw new Error('diaomaoUpdate.allowedPackages must be an array');
178
+ }
170
179
  }
171
180
 
172
181
  exports.loadConfig = loadConfig;
@@ -150,6 +150,12 @@ function printConfigInfo(config, sources, cwd) {
150
150
  console.log('\n📤 output:');
151
151
  console.log(` logDir: ${config.output.logDir}`);
152
152
  console.log(` verbose: ${config.output.verbose}`);
153
+ if (config.diaomaoUpdate) {
154
+ console.log('\n📦 diaomaoUpdate:');
155
+ console.log(` sourceUrl: ${config.diaomaoUpdate.sourceUrl || 'not set'}`);
156
+ console.log(` allowedPackages: [${(config.diaomaoUpdate.allowedPackages || []).join(', ')}]`);
157
+ console.log(` compactLog: ${config.diaomaoUpdate.compactLog !== false}`);
158
+ }
153
159
  console.log('');
154
160
  }
155
161
  /**
@@ -165,6 +171,9 @@ function validateConfig(config) {
165
171
  if (config.scan.include.length === 0) {
166
172
  throw new Error('at least one scan path is required');
167
173
  }
174
+ if (config.diaomaoUpdate?.allowedPackages && !Array.isArray(config.diaomaoUpdate.allowedPackages)) {
175
+ throw new Error('diaomaoUpdate.allowedPackages must be an array');
176
+ }
168
177
  }
169
178
 
170
179
  export { loadConfig, validateConfig };
@@ -21,6 +21,11 @@ export interface DevScriptsConfig {
21
21
  verbose?: boolean;
22
22
  };
23
23
  architectureConfig?: Record<string, string>;
24
+ diaomaoUpdate?: {
25
+ sourceUrl?: string;
26
+ allowedPackages?: string[];
27
+ compactLog?: boolean;
28
+ };
24
29
  }
25
30
  export interface PackageJsonDevScripts {
26
31
  locales?: string[];
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAE/B,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,EAAE,CAAA;QACjB,aAAa,EAAE,MAAM,CAAA;QACrB,WAAW,EAAE,MAAM,CAAA;KACpB,CAAA;IAGD,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,EAAE,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;QAClB,OAAO,CAAC,EAAE,MAAM,CAAA;KACjB,CAAA;IAGD,IAAI,CAAC,EAAE;QACL,MAAM,EAAE,MAAM,CAAA;QACd,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;IAGD,MAAM,EAAE;QACN,MAAM,EAAE,MAAM,CAAA;QACd,OAAO,CAAC,EAAE,OAAO,CAAA;KAClB,CAAA;IAGD,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAC5C;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,eAAO,MAAM,cAAc,EAAE,gBAgF5B,CAAA"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAE/B,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,EAAE,CAAA;QACjB,aAAa,EAAE,MAAM,CAAA;QACrB,WAAW,EAAE,MAAM,CAAA;KACpB,CAAA;IAGD,IAAI,EAAE;QACJ,OAAO,EAAE,MAAM,EAAE,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;QAClB,OAAO,CAAC,EAAE,MAAM,CAAA;KACjB,CAAA;IAGD,IAAI,CAAC,EAAE;QACL,MAAM,EAAE,MAAM,CAAA;QACd,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,QAAQ,CAAC,EAAE,MAAM,CAAA;QACjB,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;IAGD,MAAM,EAAE;QACN,MAAM,EAAE,MAAM,CAAA;QACd,OAAO,CAAC,EAAE,OAAO,CAAA;KAClB,CAAA;IAGD,kBAAkB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAG3C,aAAa,CAAC,EAAE;QACd,SAAS,CAAC,EAAE,MAAM,CAAA;QAClB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAA;QAC1B,UAAU,CAAC,EAAE,OAAO,CAAA;KACrB,CAAA;CACF;AAED,MAAM,WAAW,qBAAqB;IACpC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAED,eAAO,MAAM,cAAc,EAAE,gBAqF5B,CAAA"}
@@ -21,6 +21,11 @@ const DEFAULT_CONFIG = {
21
21
  logDir: 'logs',
22
22
  verbose: false
23
23
  },
24
+ diaomaoUpdate: {
25
+ sourceUrl: 'https://raw.githubusercontent.com/caofanCPU/next-ai-build/main/pnpm-workspace.yaml',
26
+ allowedPackages: [],
27
+ compactLog: true
28
+ },
24
29
  architectureConfig: {
25
30
  ".": "项目根目录",
26
31
  ".env.local": "本地环境变量配置",
@@ -19,6 +19,11 @@ const DEFAULT_CONFIG = {
19
19
  logDir: 'logs',
20
20
  verbose: false
21
21
  },
22
+ diaomaoUpdate: {
23
+ sourceUrl: 'https://raw.githubusercontent.com/caofanCPU/next-ai-build/main/pnpm-workspace.yaml',
24
+ allowedPackages: [],
25
+ compactLog: true
26
+ },
22
27
  architectureConfig: {
23
28
  ".": "项目根目录",
24
29
  ".env.local": "本地环境变量配置",
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export { checkTranslations } from '@dev-scripts/commands/check-translations';
2
2
  export { cleanTranslations } from '@dev-scripts/commands/clean-translations';
3
3
  export { generateBlogIndex } from '@dev-scripts/commands/generate-blog-index';
4
+ export { diaomaoUpdate } from '@dev-scripts/commands/diaomao-update';
4
5
  export { registerBackendCoreCommands, syncBackendCoreRoutes, listBackendCoreRoutes, syncBackendCorePrisma, syncBackendCoreMigrations } from '@dev-scripts/commands/backend-core';
5
6
  export { loadConfig, validateConfig } from '@dev-scripts/config';
6
7
  export type { DevScriptsConfig, PackageJsonDevScripts } from '@dev-scripts/config/schema';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAA;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAA;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAA;AAC7E,OAAO,EACL,2BAA2B,EAC3B,qBAAqB,EACrB,qBAAqB,EACrB,qBAAqB,EACrB,yBAAyB,EAC1B,MAAM,oCAAoC,CAAA;AAG3C,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAChE,YAAY,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAA;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAA;AAC5E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAA;AAC7E,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAA;AACpE,OAAO,EACL,2BAA2B,EAC3B,qBAAqB,EACrB,qBAAqB,EACrB,qBAAqB,EACrB,yBAAyB,EAC1B,MAAM,oCAAoC,CAAA;AAG3C,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAChE,YAAY,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAA"}
package/dist/index.js CHANGED
@@ -3,6 +3,7 @@
3
3
  var checkTranslations = require('./commands/check-translations.js');
4
4
  var cleanTranslations = require('./commands/clean-translations.js');
5
5
  var generateBlogIndex = require('./commands/generate-blog-index.js');
6
+ var diaomaoUpdate = require('./commands/diaomao-update.js');
6
7
  var backendCore = require('./commands/backend-core.js');
7
8
  var index = require('./config/index.js');
8
9
 
@@ -11,6 +12,7 @@ var index = require('./config/index.js');
11
12
  exports.checkTranslations = checkTranslations.checkTranslations;
12
13
  exports.cleanTranslations = cleanTranslations.cleanTranslations;
13
14
  exports.generateBlogIndex = generateBlogIndex.generateBlogIndex;
15
+ exports.diaomaoUpdate = diaomaoUpdate.diaomaoUpdate;
14
16
  exports.listBackendCoreRoutes = backendCore.listBackendCoreRoutes;
15
17
  exports.registerBackendCoreCommands = backendCore.registerBackendCoreCommands;
16
18
  exports.syncBackendCoreMigrations = backendCore.syncBackendCoreMigrations;
package/dist/index.mjs CHANGED
@@ -1,5 +1,6 @@
1
1
  export { checkTranslations } from './commands/check-translations.mjs';
2
2
  export { cleanTranslations } from './commands/clean-translations.mjs';
3
3
  export { generateBlogIndex } from './commands/generate-blog-index.mjs';
4
+ export { diaomaoUpdate } from './commands/diaomao-update.mjs';
4
5
  export { listBackendCoreRoutes, registerBackendCoreCommands, syncBackendCoreMigrations, syncBackendCorePrisma, syncBackendCoreRoutes } from './commands/backend-core.mjs';
5
6
  export { loadConfig, validateConfig } from './config/index.mjs';
@@ -0,0 +1,161 @@
1
+ 'use strict';
2
+
3
+ var parseOptions = require('../internal/parse-options.js');
4
+ var re = require('../internal/re.js');
5
+ var cmp = require('../functions/cmp.js');
6
+ var debug = require('../internal/debug.js');
7
+ var semver = require('./semver.js');
8
+ var range = require('./range.js');
9
+
10
+ var comparator;
11
+ var hasRequiredComparator;
12
+
13
+ function requireComparator () {
14
+ if (hasRequiredComparator) return comparator;
15
+ hasRequiredComparator = 1;
16
+
17
+ const ANY = Symbol('SemVer ANY');
18
+ // hoisted class for cyclic dependency
19
+ class Comparator {
20
+ static get ANY () {
21
+ return ANY
22
+ }
23
+
24
+ constructor (comp, options) {
25
+ options = parseOptions$1(options);
26
+
27
+ if (comp instanceof Comparator) {
28
+ if (comp.loose === !!options.loose) {
29
+ return comp
30
+ } else {
31
+ comp = comp.value;
32
+ }
33
+ }
34
+
35
+ comp = comp.trim().split(/\s+/).join(' ');
36
+ debug$1('comparator', comp, options);
37
+ this.options = options;
38
+ this.loose = !!options.loose;
39
+ this.parse(comp);
40
+
41
+ if (this.semver === ANY) {
42
+ this.value = '';
43
+ } else {
44
+ this.value = this.operator + this.semver.version;
45
+ }
46
+
47
+ debug$1('comp', this);
48
+ }
49
+
50
+ parse (comp) {
51
+ const r = this.options.loose ? re$1[t.COMPARATORLOOSE] : re$1[t.COMPARATOR];
52
+ const m = comp.match(r);
53
+
54
+ if (!m) {
55
+ throw new TypeError(`Invalid comparator: ${comp}`)
56
+ }
57
+
58
+ this.operator = m[1] !== undefined ? m[1] : '';
59
+ if (this.operator === '=') {
60
+ this.operator = '';
61
+ }
62
+
63
+ // if it literally is just '>' or '' then allow anything.
64
+ if (!m[2]) {
65
+ this.semver = ANY;
66
+ } else {
67
+ this.semver = new SemVer(m[2], this.options.loose);
68
+ }
69
+ }
70
+
71
+ toString () {
72
+ return this.value
73
+ }
74
+
75
+ test (version) {
76
+ debug$1('Comparator.test', version, this.options.loose);
77
+
78
+ if (this.semver === ANY || version === ANY) {
79
+ return true
80
+ }
81
+
82
+ if (typeof version === 'string') {
83
+ try {
84
+ version = new SemVer(version, this.options);
85
+ } catch (er) {
86
+ return false
87
+ }
88
+ }
89
+
90
+ return cmp$1(version, this.operator, this.semver, this.options)
91
+ }
92
+
93
+ intersects (comp, options) {
94
+ if (!(comp instanceof Comparator)) {
95
+ throw new TypeError('a Comparator is required')
96
+ }
97
+
98
+ if (this.operator === '') {
99
+ if (this.value === '') {
100
+ return true
101
+ }
102
+ return new Range(comp.value, options).test(this.value)
103
+ } else if (comp.operator === '') {
104
+ if (comp.value === '') {
105
+ return true
106
+ }
107
+ return new Range(this.value, options).test(comp.semver)
108
+ }
109
+
110
+ options = parseOptions$1(options);
111
+
112
+ // Special cases where nothing can possibly be lower
113
+ if (options.includePrerelease &&
114
+ (this.value === '<0.0.0-0' || comp.value === '<0.0.0-0')) {
115
+ return false
116
+ }
117
+ if (!options.includePrerelease &&
118
+ (this.value.startsWith('<0.0.0') || comp.value.startsWith('<0.0.0'))) {
119
+ return false
120
+ }
121
+
122
+ // Same direction increasing (> or >=)
123
+ if (this.operator.startsWith('>') && comp.operator.startsWith('>')) {
124
+ return true
125
+ }
126
+ // Same direction decreasing (< or <=)
127
+ if (this.operator.startsWith('<') && comp.operator.startsWith('<')) {
128
+ return true
129
+ }
130
+ // same SemVer and both sides are inclusive (<= or >=)
131
+ if (
132
+ (this.semver.version === comp.semver.version) &&
133
+ this.operator.includes('=') && comp.operator.includes('=')) {
134
+ return true
135
+ }
136
+ // opposite directions less than
137
+ if (cmp$1(this.semver, '<', comp.semver, options) &&
138
+ this.operator.startsWith('>') && comp.operator.startsWith('<')) {
139
+ return true
140
+ }
141
+ // opposite directions greater than
142
+ if (cmp$1(this.semver, '>', comp.semver, options) &&
143
+ this.operator.startsWith('<') && comp.operator.startsWith('>')) {
144
+ return true
145
+ }
146
+ return false
147
+ }
148
+ }
149
+
150
+ comparator = Comparator;
151
+
152
+ const parseOptions$1 = parseOptions.__require();
153
+ const { safeRe: re$1, t } = re.__require();
154
+ const cmp$1 = cmp.__require();
155
+ const debug$1 = debug.__require();
156
+ const SemVer = semver.__require();
157
+ const Range = range.__require();
158
+ return comparator;
159
+ }
160
+
161
+ exports.__require = requireComparator;