@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.
- package/dist/_virtual/_commonjsHelpers.js +7 -0
- package/dist/_virtual/_commonjsHelpers.mjs +5 -0
- package/dist/_virtual/index.js +11 -0
- package/dist/_virtual/index.mjs +7 -0
- package/dist/_virtual/re.js +5 -0
- package/dist/_virtual/re.mjs +3 -0
- package/dist/cli.js +33 -1
- package/dist/cli.mjs +33 -1
- package/dist/commands/diaomao-update.d.ts +3 -0
- package/dist/commands/diaomao-update.d.ts.map +1 -0
- package/dist/commands/diaomao-update.js +336 -0
- package/dist/commands/diaomao-update.mjs +334 -0
- package/dist/config/index.d.ts.map +1 -1
- package/dist/config/index.js +9 -0
- package/dist/config/index.mjs +9 -0
- package/dist/config/schema.d.ts +5 -0
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/config/schema.js +5 -0
- package/dist/config/schema.mjs +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.js +161 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.mjs +159 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.js +576 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.mjs +574 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.js +350 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.mjs +348 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.js +72 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.mjs +70 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.js +77 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.mjs +75 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.js +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.mjs +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.js +73 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.mjs +71 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.js +34 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.mjs +32 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.js +31 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.mjs +29 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.js +25 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.mjs +23 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.js +18 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.mjs +16 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.js +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.mjs +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.js +144 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.mjs +142 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.js +48 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.mjs +46 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.js +40 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.mjs +38 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.js +53 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.mjs +51 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.js +28 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.mjs +26 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.js +239 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.mjs +237 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.js +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.mjs +17 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.js +22 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.mjs +20 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.js +19 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.mjs +17 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.js +41 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.mjs +39 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.js +40 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.mjs +38 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.js +78 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.mjs +76 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.js +102 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.mjs +100 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.js +63 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.mjs +61 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.js +265 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.mjs +263 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.js +23 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.mjs +21 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.js +26 -0
- package/dist/node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.js +90 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-collection.mjs +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.js +45 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-doc.mjs +43 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.js +105 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-node.mjs +102 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.js +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/compose-scalar.mjs +86 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.js +219 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/composer.mjs +217 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.js +117 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-map.mjs +115 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +200 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-scalar.mjs +198 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +51 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-block-seq.mjs +49 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-end.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +209 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-collection.mjs +207 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +225 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.mjs +223 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/resolve-props.mjs +146 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.js +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-contains-newline.mjs +34 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +28 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.mjs +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-flow-indent-check.mjs +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.js +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/compose/util-map-includes.mjs +13 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.js +337 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/Document.mjs +335 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.js +76 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/anchors.mjs +71 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.js +57 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/applyReviver.mjs +55 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.js +90 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/createNode.mjs +88 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.js +178 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/doc/directives.mjs +176 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.js +62 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/errors.mjs +57 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.js +9 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/log.mjs +7 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.js +116 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Alias.mjs +114 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.js +151 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Collection.mjs +147 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.js +40 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Node.mjs +38 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Pair.mjs +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.js +27 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/Scalar.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.js +147 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLMap.mjs +144 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +115 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/YAMLSeq.mjs +113 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +65 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/addPairToJSMap.mjs +63 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.js +53 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/identity.mjs +36 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/nodes/toJS.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.js +79 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/cst.mjs +73 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.js +719 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/lexer.mjs +717 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.js +41 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/line-counter.mjs +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.js +969 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/parse/parser.mjs +967 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.js +68 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/public-api.mjs +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.js +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/Schema.mjs +37 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.js +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/map.mjs +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.js +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/null.mjs +15 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.js +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/seq.mjs +17 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.js +16 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/common/string.mjs +14 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.js +21 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/bool.mjs +19 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.js +47 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/float.mjs +43 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.js +42 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/int.mjs +38 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.js +25 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/core/schema.mjs +23 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.js +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/json/schema.mjs +62 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.js +99 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/tags.mjs +96 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +60 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.mjs +58 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +29 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.mjs +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +50 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/float.mjs +46 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +76 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/int.mjs +71 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +68 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.mjs +64 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +77 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.mjs +74 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +82 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.mjs +78 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +41 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.mjs +39 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +96 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/set.mjs +93 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.mjs +101 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +151 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/foldFlowLines.mjs +146 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.js +131 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringify.mjs +128 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +145 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyCollection.mjs +143 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.js +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyComment.mjs +20 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +87 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyDocument.mjs +85 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +26 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyNumber.mjs +24 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.js +152 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyPair.mjs +150 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.js +338 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/stringify/stringifyString.mjs +336 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.js +148 -0
- package/dist/node_modules/.pnpm/yaml@2.8.2/node_modules/yaml/browser/dist/visit.mjs +146 -0
- package/package.json +6 -4
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var _commonjsHelpers = require('./_commonjsHelpers.js');
|
|
6
|
+
var index = require('../node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.js');
|
|
7
|
+
|
|
8
|
+
var semverExports = index.__require();
|
|
9
|
+
var semver = /*@__PURE__*/_commonjsHelpers.getDefaultExportFromCjs(semverExports);
|
|
10
|
+
|
|
11
|
+
exports.default = semver;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { getDefaultExportFromCjs } from './_commonjsHelpers.mjs';
|
|
2
|
+
import { __require as requireSemver } from '../node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.mjs';
|
|
3
|
+
|
|
4
|
+
var semverExports = requireSemver();
|
|
5
|
+
var semver = /*@__PURE__*/getDefaultExportFromCjs(semverExports);
|
|
6
|
+
|
|
7
|
+
export { semver as default };
|
package/dist/cli.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
+
var fs = require('fs');
|
|
5
|
+
var path = require('path');
|
|
4
6
|
var commander = require('commander');
|
|
5
7
|
var index = require('./config/index.js');
|
|
6
8
|
var checkTranslations = require('./commands/check-translations.js');
|
|
@@ -11,13 +13,16 @@ var easyChangeset = require('./commands/easy-changeset.js');
|
|
|
11
13
|
var generateNextjsArchitecture = require('./commands/generate-nextjs-architecture.js');
|
|
12
14
|
var createDiaomaoApp = require('./commands/create-diaomao-app.js');
|
|
13
15
|
var backendCore = require('./commands/backend-core.js');
|
|
16
|
+
var diaomaoUpdate = require('./commands/diaomao-update.js');
|
|
14
17
|
|
|
15
18
|
// get current working directory, ensure it works in Node.js environment
|
|
16
19
|
const cwd = typeof process !== 'undefined' ? process.cwd() : '.';
|
|
20
|
+
const cliPackageJsonPath = path.resolve(__dirname, '../package.json');
|
|
21
|
+
const cliPackageJson = JSON.parse(fs.readFileSync(cliPackageJsonPath, 'utf8'));
|
|
17
22
|
commander.program
|
|
18
23
|
.name('dev-scripts')
|
|
19
24
|
.description('development scripts for multi-language projects')
|
|
20
|
-
.version('
|
|
25
|
+
.version(cliPackageJson.version || '0.0.0');
|
|
21
26
|
commander.program
|
|
22
27
|
.command('check-translations')
|
|
23
28
|
.description('check the completeness and consistency of translation files')
|
|
@@ -155,6 +160,33 @@ commander.program
|
|
|
155
160
|
}
|
|
156
161
|
}
|
|
157
162
|
});
|
|
163
|
+
commander.program
|
|
164
|
+
.command('diaomao-update')
|
|
165
|
+
.description('sync allowed dependency versions from the remote diaomao workspace source')
|
|
166
|
+
.option('-v, --verbose', 'show detailed logs', false)
|
|
167
|
+
.action(async (options) => {
|
|
168
|
+
try {
|
|
169
|
+
const config = index.loadConfig(cwd, {
|
|
170
|
+
diaomaoUpdate: {
|
|
171
|
+
compactLog: options.verbose ? false : undefined
|
|
172
|
+
}
|
|
173
|
+
}, options.verbose);
|
|
174
|
+
if (options.verbose) {
|
|
175
|
+
config.output.verbose = true;
|
|
176
|
+
}
|
|
177
|
+
index.validateConfig(config);
|
|
178
|
+
const exitCode = await diaomaoUpdate.diaomaoUpdate(config, cwd);
|
|
179
|
+
if (typeof process !== 'undefined') {
|
|
180
|
+
process.exit(exitCode);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
catch (error) {
|
|
184
|
+
console.error('Error:', error);
|
|
185
|
+
if (typeof process !== 'undefined') {
|
|
186
|
+
process.exit(1);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
});
|
|
158
190
|
commander.program
|
|
159
191
|
.command('create-diaomao-app <project-name>')
|
|
160
192
|
.description('create a new diaomao app from template')
|
package/dist/cli.mjs
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
+
import fs from 'fs';
|
|
3
|
+
import path from 'path';
|
|
2
4
|
import { program } from 'commander';
|
|
3
5
|
import { loadConfig, validateConfig } from './config/index.mjs';
|
|
4
6
|
import { checkTranslations } from './commands/check-translations.mjs';
|
|
@@ -9,13 +11,16 @@ import { easyChangeset } from './commands/easy-changeset.mjs';
|
|
|
9
11
|
import { generateNextjsArchitecture } from './commands/generate-nextjs-architecture.mjs';
|
|
10
12
|
import { createDiaomaoApp } from './commands/create-diaomao-app.mjs';
|
|
11
13
|
import { registerBackendCoreCommands } from './commands/backend-core.mjs';
|
|
14
|
+
import { diaomaoUpdate } from './commands/diaomao-update.mjs';
|
|
12
15
|
|
|
13
16
|
// get current working directory, ensure it works in Node.js environment
|
|
14
17
|
const cwd = typeof process !== 'undefined' ? process.cwd() : '.';
|
|
18
|
+
const cliPackageJsonPath = path.resolve(__dirname, '../package.json');
|
|
19
|
+
const cliPackageJson = JSON.parse(fs.readFileSync(cliPackageJsonPath, 'utf8'));
|
|
15
20
|
program
|
|
16
21
|
.name('dev-scripts')
|
|
17
22
|
.description('development scripts for multi-language projects')
|
|
18
|
-
.version('
|
|
23
|
+
.version(cliPackageJson.version || '0.0.0');
|
|
19
24
|
program
|
|
20
25
|
.command('check-translations')
|
|
21
26
|
.description('check the completeness and consistency of translation files')
|
|
@@ -153,6 +158,33 @@ program
|
|
|
153
158
|
}
|
|
154
159
|
}
|
|
155
160
|
});
|
|
161
|
+
program
|
|
162
|
+
.command('diaomao-update')
|
|
163
|
+
.description('sync allowed dependency versions from the remote diaomao workspace source')
|
|
164
|
+
.option('-v, --verbose', 'show detailed logs', false)
|
|
165
|
+
.action(async (options) => {
|
|
166
|
+
try {
|
|
167
|
+
const config = loadConfig(cwd, {
|
|
168
|
+
diaomaoUpdate: {
|
|
169
|
+
compactLog: options.verbose ? false : undefined
|
|
170
|
+
}
|
|
171
|
+
}, options.verbose);
|
|
172
|
+
if (options.verbose) {
|
|
173
|
+
config.output.verbose = true;
|
|
174
|
+
}
|
|
175
|
+
validateConfig(config);
|
|
176
|
+
const exitCode = await diaomaoUpdate(config, cwd);
|
|
177
|
+
if (typeof process !== 'undefined') {
|
|
178
|
+
process.exit(exitCode);
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
catch (error) {
|
|
182
|
+
console.error('Error:', error);
|
|
183
|
+
if (typeof process !== 'undefined') {
|
|
184
|
+
process.exit(1);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
});
|
|
156
188
|
program
|
|
157
189
|
.command('create-diaomao-app <project-name>')
|
|
158
190
|
.description('create a new diaomao app from template')
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"diaomao-update.d.ts","sourceRoot":"","sources":["../../src/commands/diaomao-update.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AA0O7D,wBAAsB,aAAa,CACjC,MAAM,EAAE,gBAAgB,EACxB,GAAG,GAAE,MAA6D,GACjE,OAAO,CAAC,MAAM,CAAC,CA6LjB"}
|
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var fs = require('fs');
|
|
4
|
+
var path = require('path');
|
|
5
|
+
var https = require('https');
|
|
6
|
+
var yaml = require('yaml');
|
|
7
|
+
var semver = require('semver');
|
|
8
|
+
|
|
9
|
+
const DEPENDENCY_SECTIONS = [
|
|
10
|
+
'dependencies',
|
|
11
|
+
'devDependencies',
|
|
12
|
+
'peerDependencies',
|
|
13
|
+
'optionalDependencies'
|
|
14
|
+
];
|
|
15
|
+
function fetchText(url) {
|
|
16
|
+
return new Promise((resolve, reject) => {
|
|
17
|
+
const request = https.get(url, (response) => {
|
|
18
|
+
const statusCode = response.statusCode ?? 0;
|
|
19
|
+
if (statusCode >= 300 && statusCode < 400 && response.headers.location) {
|
|
20
|
+
response.resume();
|
|
21
|
+
fetchText(response.headers.location).then(resolve).catch(reject);
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
if (statusCode < 200 || statusCode >= 300) {
|
|
25
|
+
response.resume();
|
|
26
|
+
reject(new Error(`failed to fetch update source: ${statusCode}`));
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
let body = '';
|
|
30
|
+
response.setEncoding('utf8');
|
|
31
|
+
response.on('data', (chunk) => {
|
|
32
|
+
body += chunk;
|
|
33
|
+
});
|
|
34
|
+
response.on('end', () => resolve(body));
|
|
35
|
+
});
|
|
36
|
+
request.on('error', (error) => reject(error));
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
function findNearestFile(startDir, fileName) {
|
|
40
|
+
let currentDir = startDir;
|
|
41
|
+
while (true) {
|
|
42
|
+
const candidate = path.join(currentDir, fileName);
|
|
43
|
+
if (fs.existsSync(candidate)) {
|
|
44
|
+
return candidate;
|
|
45
|
+
}
|
|
46
|
+
const parentDir = path.dirname(currentDir);
|
|
47
|
+
if (parentDir === currentDir) {
|
|
48
|
+
return null;
|
|
49
|
+
}
|
|
50
|
+
currentDir = parentDir;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
function stripProtocolPrefix(version) {
|
|
54
|
+
const protocolPrefixes = ['workspace:', 'npm:'];
|
|
55
|
+
for (const prefix of protocolPrefixes) {
|
|
56
|
+
if (version.startsWith(prefix)) {
|
|
57
|
+
return version.slice(prefix.length);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return version;
|
|
61
|
+
}
|
|
62
|
+
function isTagVersion(version) {
|
|
63
|
+
return version === 'latest';
|
|
64
|
+
}
|
|
65
|
+
function getComparableMinVersion(version) {
|
|
66
|
+
try {
|
|
67
|
+
return semver.minVersion(version);
|
|
68
|
+
}
|
|
69
|
+
catch {
|
|
70
|
+
return null;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
function compareVersionSpecs(currentVersion, targetVersion) {
|
|
74
|
+
const normalizedCurrent = stripProtocolPrefix(currentVersion);
|
|
75
|
+
const normalizedTarget = stripProtocolPrefix(targetVersion);
|
|
76
|
+
if (isTagVersion(normalizedCurrent) || isTagVersion(normalizedTarget)) {
|
|
77
|
+
return 'uncomparable';
|
|
78
|
+
}
|
|
79
|
+
if (currentVersion === targetVersion) {
|
|
80
|
+
return 'same';
|
|
81
|
+
}
|
|
82
|
+
if (normalizedCurrent === normalizedTarget) {
|
|
83
|
+
return 'same';
|
|
84
|
+
}
|
|
85
|
+
const currentMin = getComparableMinVersion(normalizedCurrent);
|
|
86
|
+
const targetMin = getComparableMinVersion(normalizedTarget);
|
|
87
|
+
if (currentMin && targetMin) {
|
|
88
|
+
const comparison = semver.compare(currentMin, targetMin);
|
|
89
|
+
if (comparison > 0) {
|
|
90
|
+
return 'newer';
|
|
91
|
+
}
|
|
92
|
+
if (comparison === 0) {
|
|
93
|
+
return 'same';
|
|
94
|
+
}
|
|
95
|
+
return 'update';
|
|
96
|
+
}
|
|
97
|
+
return 'uncomparable';
|
|
98
|
+
}
|
|
99
|
+
function extractCatalog(workspaceContent) {
|
|
100
|
+
const parsed = yaml.parse(workspaceContent);
|
|
101
|
+
const catalog = parsed?.catalog;
|
|
102
|
+
if (!catalog || typeof catalog !== 'object') {
|
|
103
|
+
throw new Error('catalog section not found in remote pnpm-workspace.yaml');
|
|
104
|
+
}
|
|
105
|
+
return catalog;
|
|
106
|
+
}
|
|
107
|
+
function loadJsonFile(filePath) {
|
|
108
|
+
return JSON.parse(fs.readFileSync(filePath, 'utf8'));
|
|
109
|
+
}
|
|
110
|
+
function loadYamlFile(filePath) {
|
|
111
|
+
return yaml.parse(fs.readFileSync(filePath, 'utf8'));
|
|
112
|
+
}
|
|
113
|
+
function saveYamlFile(filePath, data) {
|
|
114
|
+
fs.writeFileSync(filePath, yaml.stringify(data), 'utf8');
|
|
115
|
+
}
|
|
116
|
+
function saveJsonFile(filePath, data) {
|
|
117
|
+
fs.writeFileSync(filePath, `${JSON.stringify(data, null, 2)}\n`, 'utf8');
|
|
118
|
+
}
|
|
119
|
+
function renderTable(rows, headers) {
|
|
120
|
+
const widths = [
|
|
121
|
+
headers[0].length,
|
|
122
|
+
headers[1].length,
|
|
123
|
+
headers[2].length,
|
|
124
|
+
headers[3]?.length ?? 0
|
|
125
|
+
];
|
|
126
|
+
for (const row of rows) {
|
|
127
|
+
widths[0] = Math.max(widths[0], row.packageName.length);
|
|
128
|
+
widths[1] = Math.max(widths[1], row.currentVersion.length);
|
|
129
|
+
widths[2] = Math.max(widths[2], row.targetVersion.length);
|
|
130
|
+
if ('reason' in row) {
|
|
131
|
+
widths[3] = Math.max(widths[3], row.reason.length);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
const hasFourthColumn = Boolean(headers[3]);
|
|
135
|
+
const border = hasFourthColumn
|
|
136
|
+
? `┌${'─'.repeat(widths[0] + 2)}┬${'─'.repeat(widths[1] + 2)}┬${'─'.repeat(widths[2] + 2)}┬${'─'.repeat(widths[3] + 2)}┐`
|
|
137
|
+
: `┌${'─'.repeat(widths[0] + 2)}┬${'─'.repeat(widths[1] + 2)}┬${'─'.repeat(widths[2] + 2)}┐`;
|
|
138
|
+
const separator = hasFourthColumn
|
|
139
|
+
? `├${'─'.repeat(widths[0] + 2)}┼${'─'.repeat(widths[1] + 2)}┼${'─'.repeat(widths[2] + 2)}┼${'─'.repeat(widths[3] + 2)}┤`
|
|
140
|
+
: `├${'─'.repeat(widths[0] + 2)}┼${'─'.repeat(widths[1] + 2)}┼${'─'.repeat(widths[2] + 2)}┤`;
|
|
141
|
+
const footer = hasFourthColumn
|
|
142
|
+
? `└${'─'.repeat(widths[0] + 2)}┴${'─'.repeat(widths[1] + 2)}┴${'─'.repeat(widths[2] + 2)}┴${'─'.repeat(widths[3] + 2)}┘`
|
|
143
|
+
: `└${'─'.repeat(widths[0] + 2)}┴${'─'.repeat(widths[1] + 2)}┴${'─'.repeat(widths[2] + 2)}┘`;
|
|
144
|
+
const formatRow = (columns) => {
|
|
145
|
+
if (hasFourthColumn) {
|
|
146
|
+
return `│ ${columns[0].padEnd(widths[0])} │ ${columns[1].padEnd(widths[1])} │ ${columns[2].padEnd(widths[2])} │ ${columns[3].padEnd(widths[3])} │`;
|
|
147
|
+
}
|
|
148
|
+
return `│ ${columns[0].padEnd(widths[0])} │ ${columns[1].padEnd(widths[1])} │ ${columns[2].padEnd(widths[2])} │`;
|
|
149
|
+
};
|
|
150
|
+
return [
|
|
151
|
+
border,
|
|
152
|
+
formatRow(hasFourthColumn ? [headers[0], headers[1], headers[2], headers[3] || ''] : [headers[0], headers[1], headers[2]]),
|
|
153
|
+
separator,
|
|
154
|
+
...rows.map((row) => formatRow('reason' in row
|
|
155
|
+
? [row.packageName, row.currentVersion, row.targetVersion, row.reason]
|
|
156
|
+
: [row.packageName, row.currentVersion, row.targetVersion])),
|
|
157
|
+
footer
|
|
158
|
+
].join('\n');
|
|
159
|
+
}
|
|
160
|
+
function printSkipDetails(skipRows, compactLog) {
|
|
161
|
+
const newerCount = skipRows.filter((row) => row.reason === 'skipped-newer').length;
|
|
162
|
+
if (compactLog) {
|
|
163
|
+
if (newerCount > 0) {
|
|
164
|
+
console.log(`Skipped ${newerCount} package(s) because local versions are newer than the source.`);
|
|
165
|
+
}
|
|
166
|
+
return;
|
|
167
|
+
}
|
|
168
|
+
if (skipRows.length === 0) {
|
|
169
|
+
return;
|
|
170
|
+
}
|
|
171
|
+
console.log('\nSkipped:');
|
|
172
|
+
console.log(renderTable(skipRows, ['Package', 'Before', 'After', 'Reason']));
|
|
173
|
+
}
|
|
174
|
+
async function diaomaoUpdate(config, cwd = typeof process !== 'undefined' ? process.cwd() : '.') {
|
|
175
|
+
const updateConfig = config.diaomaoUpdate || {};
|
|
176
|
+
const sourceUrl = updateConfig.sourceUrl || '';
|
|
177
|
+
const allowedPackages = updateConfig.allowedPackages || [];
|
|
178
|
+
const compactLog = updateConfig.compactLog !== false;
|
|
179
|
+
if (!sourceUrl) {
|
|
180
|
+
throw new Error('diaomaoUpdate.sourceUrl is required');
|
|
181
|
+
}
|
|
182
|
+
if (!Array.isArray(allowedPackages) || allowedPackages.length === 0) {
|
|
183
|
+
throw new Error('diaomaoUpdate.allowedPackages must contain at least one package name');
|
|
184
|
+
}
|
|
185
|
+
const packageJsonPath = path.join(cwd, 'package.json');
|
|
186
|
+
if (!fs.existsSync(packageJsonPath)) {
|
|
187
|
+
throw new Error(`package.json not found in ${cwd}`);
|
|
188
|
+
}
|
|
189
|
+
const localWorkspacePath = findNearestFile(cwd, 'pnpm-workspace.yaml');
|
|
190
|
+
const packageJson = loadJsonFile(packageJsonPath);
|
|
191
|
+
const localWorkspace = localWorkspacePath ? loadYamlFile(localWorkspacePath) : null;
|
|
192
|
+
const localCatalog = localWorkspace?.catalog || {};
|
|
193
|
+
console.log(`Reading update source: ${sourceUrl}`);
|
|
194
|
+
const remoteWorkspaceContent = await fetchText(sourceUrl);
|
|
195
|
+
const remoteCatalog = extractCatalog(remoteWorkspaceContent);
|
|
196
|
+
const updatedRows = [];
|
|
197
|
+
const skipRows = [];
|
|
198
|
+
let packageJsonChanged = false;
|
|
199
|
+
let workspaceChanged = false;
|
|
200
|
+
for (const packageName of allowedPackages) {
|
|
201
|
+
const targetVersion = remoteCatalog[packageName];
|
|
202
|
+
if (!targetVersion) {
|
|
203
|
+
continue;
|
|
204
|
+
}
|
|
205
|
+
let matched = false;
|
|
206
|
+
for (const section of DEPENDENCY_SECTIONS) {
|
|
207
|
+
const dependencies = packageJson[section];
|
|
208
|
+
if (!dependencies || !(packageName in dependencies)) {
|
|
209
|
+
continue;
|
|
210
|
+
}
|
|
211
|
+
matched = true;
|
|
212
|
+
const currentSpecifier = dependencies[packageName];
|
|
213
|
+
if (currentSpecifier.startsWith('workspace:')) {
|
|
214
|
+
skipRows.push({
|
|
215
|
+
packageName,
|
|
216
|
+
currentVersion: currentSpecifier,
|
|
217
|
+
targetVersion,
|
|
218
|
+
reason: 'skipped-workspace'
|
|
219
|
+
});
|
|
220
|
+
continue;
|
|
221
|
+
}
|
|
222
|
+
if (currentSpecifier === 'catalog:') {
|
|
223
|
+
const localCatalogVersion = localCatalog[packageName];
|
|
224
|
+
if (!localCatalogVersion) {
|
|
225
|
+
skipRows.push({
|
|
226
|
+
packageName,
|
|
227
|
+
currentVersion: currentSpecifier,
|
|
228
|
+
targetVersion,
|
|
229
|
+
reason: 'skipped-unresolved-catalog'
|
|
230
|
+
});
|
|
231
|
+
continue;
|
|
232
|
+
}
|
|
233
|
+
const decision = compareVersionSpecs(localCatalogVersion, targetVersion);
|
|
234
|
+
if (decision === 'newer') {
|
|
235
|
+
skipRows.push({
|
|
236
|
+
packageName,
|
|
237
|
+
currentVersion: localCatalogVersion,
|
|
238
|
+
targetVersion,
|
|
239
|
+
reason: 'skipped-newer'
|
|
240
|
+
});
|
|
241
|
+
continue;
|
|
242
|
+
}
|
|
243
|
+
if (decision === 'same') {
|
|
244
|
+
skipRows.push({
|
|
245
|
+
packageName,
|
|
246
|
+
currentVersion: localCatalogVersion,
|
|
247
|
+
targetVersion,
|
|
248
|
+
reason: 'skipped-same'
|
|
249
|
+
});
|
|
250
|
+
continue;
|
|
251
|
+
}
|
|
252
|
+
if (decision === 'uncomparable') {
|
|
253
|
+
skipRows.push({
|
|
254
|
+
packageName,
|
|
255
|
+
currentVersion: localCatalogVersion,
|
|
256
|
+
targetVersion,
|
|
257
|
+
reason: 'skipped-uncomparable'
|
|
258
|
+
});
|
|
259
|
+
continue;
|
|
260
|
+
}
|
|
261
|
+
localCatalog[packageName] = targetVersion;
|
|
262
|
+
workspaceChanged = true;
|
|
263
|
+
updatedRows.push({
|
|
264
|
+
packageName,
|
|
265
|
+
currentVersion: localCatalogVersion,
|
|
266
|
+
targetVersion
|
|
267
|
+
});
|
|
268
|
+
continue;
|
|
269
|
+
}
|
|
270
|
+
const decision = compareVersionSpecs(currentSpecifier, targetVersion);
|
|
271
|
+
if (decision === 'newer') {
|
|
272
|
+
skipRows.push({
|
|
273
|
+
packageName,
|
|
274
|
+
currentVersion: currentSpecifier,
|
|
275
|
+
targetVersion,
|
|
276
|
+
reason: 'skipped-newer'
|
|
277
|
+
});
|
|
278
|
+
continue;
|
|
279
|
+
}
|
|
280
|
+
if (decision === 'same') {
|
|
281
|
+
skipRows.push({
|
|
282
|
+
packageName,
|
|
283
|
+
currentVersion: currentSpecifier,
|
|
284
|
+
targetVersion,
|
|
285
|
+
reason: 'skipped-same'
|
|
286
|
+
});
|
|
287
|
+
continue;
|
|
288
|
+
}
|
|
289
|
+
if (decision === 'uncomparable') {
|
|
290
|
+
skipRows.push({
|
|
291
|
+
packageName,
|
|
292
|
+
currentVersion: currentSpecifier,
|
|
293
|
+
targetVersion,
|
|
294
|
+
reason: 'skipped-uncomparable'
|
|
295
|
+
});
|
|
296
|
+
continue;
|
|
297
|
+
}
|
|
298
|
+
dependencies[packageName] = targetVersion;
|
|
299
|
+
packageJsonChanged = true;
|
|
300
|
+
updatedRows.push({
|
|
301
|
+
packageName,
|
|
302
|
+
currentVersion: currentSpecifier,
|
|
303
|
+
targetVersion
|
|
304
|
+
});
|
|
305
|
+
}
|
|
306
|
+
if (!matched) {
|
|
307
|
+
skipRows.push({
|
|
308
|
+
packageName,
|
|
309
|
+
currentVersion: '-',
|
|
310
|
+
targetVersion,
|
|
311
|
+
reason: 'skipped-missing'
|
|
312
|
+
});
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
if (workspaceChanged && localWorkspacePath && localWorkspace) {
|
|
316
|
+
localWorkspace.catalog = localCatalog;
|
|
317
|
+
saveYamlFile(localWorkspacePath, localWorkspace);
|
|
318
|
+
}
|
|
319
|
+
if (packageJsonChanged) {
|
|
320
|
+
saveJsonFile(packageJsonPath, packageJson);
|
|
321
|
+
}
|
|
322
|
+
if (updatedRows.length > 0) {
|
|
323
|
+
console.log('\nResults:');
|
|
324
|
+
console.log(renderTable(updatedRows, ['Package', 'Before', 'After']));
|
|
325
|
+
}
|
|
326
|
+
else {
|
|
327
|
+
console.log('\nResults:');
|
|
328
|
+
console.log('No package versions were updated.');
|
|
329
|
+
}
|
|
330
|
+
console.log('');
|
|
331
|
+
console.log(`Updated ${updatedRows.length} package version(s).`);
|
|
332
|
+
printSkipDetails(skipRows, compactLog);
|
|
333
|
+
return 0;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
exports.diaomaoUpdate = diaomaoUpdate;
|