@releasekit/release 0.7.12 → 0.7.13

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.
@@ -1,13 +1,11 @@
1
1
  import {
2
- __commonJS,
3
- init_esm_shims
4
- } from "./chunk-NOZSTVTV.js";
2
+ __commonJS
3
+ } from "./chunk-QGM4M3NI.js";
5
4
 
6
5
  // ../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.js
7
6
  var require_constants = __commonJS({
8
7
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/constants.js"(exports, module) {
9
8
  "use strict";
10
- init_esm_shims();
11
9
  var SEMVER_SPEC_VERSION = "2.0.0";
12
10
  var MAX_LENGTH = 256;
13
11
  var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER || /* istanbul ignore next */
@@ -40,7 +38,6 @@ var require_constants = __commonJS({
40
38
  var require_debug = __commonJS({
41
39
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/debug.js"(exports, module) {
42
40
  "use strict";
43
- init_esm_shims();
44
41
  var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
45
42
  };
46
43
  module.exports = debug;
@@ -51,7 +48,6 @@ var require_debug = __commonJS({
51
48
  var require_re = __commonJS({
52
49
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/re.js"(exports, module) {
53
50
  "use strict";
54
- init_esm_shims();
55
51
  var {
56
52
  MAX_SAFE_COMPONENT_LENGTH,
57
53
  MAX_SAFE_BUILD_LENGTH,
@@ -140,7 +136,6 @@ var require_re = __commonJS({
140
136
  var require_parse_options = __commonJS({
141
137
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/parse-options.js"(exports, module) {
142
138
  "use strict";
143
- init_esm_shims();
144
139
  var looseOption = Object.freeze({ loose: true });
145
140
  var emptyOpts = Object.freeze({});
146
141
  var parseOptions = (options) => {
@@ -160,7 +155,6 @@ var require_parse_options = __commonJS({
160
155
  var require_identifiers = __commonJS({
161
156
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/identifiers.js"(exports, module) {
162
157
  "use strict";
163
- init_esm_shims();
164
158
  var numeric = /^[0-9]+$/;
165
159
  var compareIdentifiers = (a, b) => {
166
160
  if (typeof a === "number" && typeof b === "number") {
@@ -186,7 +180,6 @@ var require_identifiers = __commonJS({
186
180
  var require_semver = __commonJS({
187
181
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/semver.js"(exports, module) {
188
182
  "use strict";
189
- init_esm_shims();
190
183
  var debug = require_debug();
191
184
  var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
192
185
  var { safeRe: re, t } = require_re();
@@ -466,7 +459,6 @@ var require_semver = __commonJS({
466
459
  var require_parse = __commonJS({
467
460
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/parse.js"(exports, module) {
468
461
  "use strict";
469
- init_esm_shims();
470
462
  var SemVer = require_semver();
471
463
  var parse = (version, options, throwErrors = false) => {
472
464
  if (version instanceof SemVer) {
@@ -489,7 +481,6 @@ var require_parse = __commonJS({
489
481
  var require_valid = __commonJS({
490
482
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/valid.js"(exports, module) {
491
483
  "use strict";
492
- init_esm_shims();
493
484
  var parse = require_parse();
494
485
  var valid = (version, options) => {
495
486
  const v = parse(version, options);
@@ -503,7 +494,6 @@ var require_valid = __commonJS({
503
494
  var require_clean = __commonJS({
504
495
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/clean.js"(exports, module) {
505
496
  "use strict";
506
- init_esm_shims();
507
497
  var parse = require_parse();
508
498
  var clean = (version, options) => {
509
499
  const s = parse(version.trim().replace(/^[=v]+/, ""), options);
@@ -517,7 +507,6 @@ var require_clean = __commonJS({
517
507
  var require_inc = __commonJS({
518
508
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/inc.js"(exports, module) {
519
509
  "use strict";
520
- init_esm_shims();
521
510
  var SemVer = require_semver();
522
511
  var inc = (version, release, options, identifier, identifierBase) => {
523
512
  if (typeof options === "string") {
@@ -542,7 +531,6 @@ var require_inc = __commonJS({
542
531
  var require_diff = __commonJS({
543
532
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/diff.js"(exports, module) {
544
533
  "use strict";
545
- init_esm_shims();
546
534
  var parse = require_parse();
547
535
  var diff = (version1, version2) => {
548
536
  const v1 = parse(version1, null, true);
@@ -587,7 +575,6 @@ var require_diff = __commonJS({
587
575
  var require_major = __commonJS({
588
576
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/major.js"(exports, module) {
589
577
  "use strict";
590
- init_esm_shims();
591
578
  var SemVer = require_semver();
592
579
  var major = (a, loose) => new SemVer(a, loose).major;
593
580
  module.exports = major;
@@ -598,7 +585,6 @@ var require_major = __commonJS({
598
585
  var require_minor = __commonJS({
599
586
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/minor.js"(exports, module) {
600
587
  "use strict";
601
- init_esm_shims();
602
588
  var SemVer = require_semver();
603
589
  var minor = (a, loose) => new SemVer(a, loose).minor;
604
590
  module.exports = minor;
@@ -609,7 +595,6 @@ var require_minor = __commonJS({
609
595
  var require_patch = __commonJS({
610
596
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/patch.js"(exports, module) {
611
597
  "use strict";
612
- init_esm_shims();
613
598
  var SemVer = require_semver();
614
599
  var patch = (a, loose) => new SemVer(a, loose).patch;
615
600
  module.exports = patch;
@@ -620,7 +605,6 @@ var require_patch = __commonJS({
620
605
  var require_prerelease = __commonJS({
621
606
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/prerelease.js"(exports, module) {
622
607
  "use strict";
623
- init_esm_shims();
624
608
  var parse = require_parse();
625
609
  var prerelease = (version, options) => {
626
610
  const parsed = parse(version, options);
@@ -634,7 +618,6 @@ var require_prerelease = __commonJS({
634
618
  var require_compare = __commonJS({
635
619
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare.js"(exports, module) {
636
620
  "use strict";
637
- init_esm_shims();
638
621
  var SemVer = require_semver();
639
622
  var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
640
623
  module.exports = compare;
@@ -645,7 +628,6 @@ var require_compare = __commonJS({
645
628
  var require_rcompare = __commonJS({
646
629
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rcompare.js"(exports, module) {
647
630
  "use strict";
648
- init_esm_shims();
649
631
  var compare = require_compare();
650
632
  var rcompare = (a, b, loose) => compare(b, a, loose);
651
633
  module.exports = rcompare;
@@ -656,7 +638,6 @@ var require_rcompare = __commonJS({
656
638
  var require_compare_loose = __commonJS({
657
639
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-loose.js"(exports, module) {
658
640
  "use strict";
659
- init_esm_shims();
660
641
  var compare = require_compare();
661
642
  var compareLoose = (a, b) => compare(a, b, true);
662
643
  module.exports = compareLoose;
@@ -667,7 +648,6 @@ var require_compare_loose = __commonJS({
667
648
  var require_compare_build = __commonJS({
668
649
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/compare-build.js"(exports, module) {
669
650
  "use strict";
670
- init_esm_shims();
671
651
  var SemVer = require_semver();
672
652
  var compareBuild = (a, b, loose) => {
673
653
  const versionA = new SemVer(a, loose);
@@ -682,7 +662,6 @@ var require_compare_build = __commonJS({
682
662
  var require_sort = __commonJS({
683
663
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/sort.js"(exports, module) {
684
664
  "use strict";
685
- init_esm_shims();
686
665
  var compareBuild = require_compare_build();
687
666
  var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
688
667
  module.exports = sort;
@@ -693,7 +672,6 @@ var require_sort = __commonJS({
693
672
  var require_rsort = __commonJS({
694
673
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/rsort.js"(exports, module) {
695
674
  "use strict";
696
- init_esm_shims();
697
675
  var compareBuild = require_compare_build();
698
676
  var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
699
677
  module.exports = rsort;
@@ -704,7 +682,6 @@ var require_rsort = __commonJS({
704
682
  var require_gt = __commonJS({
705
683
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gt.js"(exports, module) {
706
684
  "use strict";
707
- init_esm_shims();
708
685
  var compare = require_compare();
709
686
  var gt = (a, b, loose) => compare(a, b, loose) > 0;
710
687
  module.exports = gt;
@@ -715,7 +692,6 @@ var require_gt = __commonJS({
715
692
  var require_lt = __commonJS({
716
693
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lt.js"(exports, module) {
717
694
  "use strict";
718
- init_esm_shims();
719
695
  var compare = require_compare();
720
696
  var lt = (a, b, loose) => compare(a, b, loose) < 0;
721
697
  module.exports = lt;
@@ -726,7 +702,6 @@ var require_lt = __commonJS({
726
702
  var require_eq = __commonJS({
727
703
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/eq.js"(exports, module) {
728
704
  "use strict";
729
- init_esm_shims();
730
705
  var compare = require_compare();
731
706
  var eq = (a, b, loose) => compare(a, b, loose) === 0;
732
707
  module.exports = eq;
@@ -737,7 +712,6 @@ var require_eq = __commonJS({
737
712
  var require_neq = __commonJS({
738
713
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/neq.js"(exports, module) {
739
714
  "use strict";
740
- init_esm_shims();
741
715
  var compare = require_compare();
742
716
  var neq = (a, b, loose) => compare(a, b, loose) !== 0;
743
717
  module.exports = neq;
@@ -748,7 +722,6 @@ var require_neq = __commonJS({
748
722
  var require_gte = __commonJS({
749
723
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/gte.js"(exports, module) {
750
724
  "use strict";
751
- init_esm_shims();
752
725
  var compare = require_compare();
753
726
  var gte = (a, b, loose) => compare(a, b, loose) >= 0;
754
727
  module.exports = gte;
@@ -759,7 +732,6 @@ var require_gte = __commonJS({
759
732
  var require_lte = __commonJS({
760
733
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/lte.js"(exports, module) {
761
734
  "use strict";
762
- init_esm_shims();
763
735
  var compare = require_compare();
764
736
  var lte = (a, b, loose) => compare(a, b, loose) <= 0;
765
737
  module.exports = lte;
@@ -770,7 +742,6 @@ var require_lte = __commonJS({
770
742
  var require_cmp = __commonJS({
771
743
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/cmp.js"(exports, module) {
772
744
  "use strict";
773
- init_esm_shims();
774
745
  var eq = require_eq();
775
746
  var neq = require_neq();
776
747
  var gt = require_gt();
@@ -821,7 +792,6 @@ var require_cmp = __commonJS({
821
792
  var require_coerce = __commonJS({
822
793
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/coerce.js"(exports, module) {
823
794
  "use strict";
824
- init_esm_shims();
825
795
  var SemVer = require_semver();
826
796
  var parse = require_parse();
827
797
  var { safeRe: re, t } = require_re();
@@ -868,7 +838,6 @@ var require_coerce = __commonJS({
868
838
  var require_lrucache = __commonJS({
869
839
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/internal/lrucache.js"(exports, module) {
870
840
  "use strict";
871
- init_esm_shims();
872
841
  var LRUCache = class {
873
842
  constructor() {
874
843
  this.max = 1e3;
@@ -907,7 +876,6 @@ var require_lrucache = __commonJS({
907
876
  var require_range = __commonJS({
908
877
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/range.js"(exports, module) {
909
878
  "use strict";
910
- init_esm_shims();
911
879
  var SPACE_CHARACTERS = /\s+/g;
912
880
  var Range = class _Range {
913
881
  constructor(range, options) {
@@ -1285,7 +1253,6 @@ var require_range = __commonJS({
1285
1253
  var require_comparator = __commonJS({
1286
1254
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/classes/comparator.js"(exports, module) {
1287
1255
  "use strict";
1288
- init_esm_shims();
1289
1256
  var ANY = /* @__PURE__ */ Symbol("SemVer ANY");
1290
1257
  var Comparator = class _Comparator {
1291
1258
  static get ANY() {
@@ -1399,7 +1366,6 @@ var require_comparator = __commonJS({
1399
1366
  var require_satisfies = __commonJS({
1400
1367
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/functions/satisfies.js"(exports, module) {
1401
1368
  "use strict";
1402
- init_esm_shims();
1403
1369
  var Range = require_range();
1404
1370
  var satisfies = (version, range, options) => {
1405
1371
  try {
@@ -1417,7 +1383,6 @@ var require_satisfies = __commonJS({
1417
1383
  var require_to_comparators = __commonJS({
1418
1384
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/to-comparators.js"(exports, module) {
1419
1385
  "use strict";
1420
- init_esm_shims();
1421
1386
  var Range = require_range();
1422
1387
  var toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
1423
1388
  module.exports = toComparators;
@@ -1428,7 +1393,6 @@ var require_to_comparators = __commonJS({
1428
1393
  var require_max_satisfying = __commonJS({
1429
1394
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/max-satisfying.js"(exports, module) {
1430
1395
  "use strict";
1431
- init_esm_shims();
1432
1396
  var SemVer = require_semver();
1433
1397
  var Range = require_range();
1434
1398
  var maxSatisfying = (versions, range, options) => {
@@ -1458,7 +1422,6 @@ var require_max_satisfying = __commonJS({
1458
1422
  var require_min_satisfying = __commonJS({
1459
1423
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-satisfying.js"(exports, module) {
1460
1424
  "use strict";
1461
- init_esm_shims();
1462
1425
  var SemVer = require_semver();
1463
1426
  var Range = require_range();
1464
1427
  var minSatisfying = (versions, range, options) => {
@@ -1488,7 +1451,6 @@ var require_min_satisfying = __commonJS({
1488
1451
  var require_min_version = __commonJS({
1489
1452
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/min-version.js"(exports, module) {
1490
1453
  "use strict";
1491
- init_esm_shims();
1492
1454
  var SemVer = require_semver();
1493
1455
  var Range = require_range();
1494
1456
  var gt = require_gt();
@@ -1548,7 +1510,6 @@ var require_min_version = __commonJS({
1548
1510
  var require_valid2 = __commonJS({
1549
1511
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/valid.js"(exports, module) {
1550
1512
  "use strict";
1551
- init_esm_shims();
1552
1513
  var Range = require_range();
1553
1514
  var validRange = (range, options) => {
1554
1515
  try {
@@ -1565,7 +1526,6 @@ var require_valid2 = __commonJS({
1565
1526
  var require_outside = __commonJS({
1566
1527
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/outside.js"(exports, module) {
1567
1528
  "use strict";
1568
- init_esm_shims();
1569
1529
  var SemVer = require_semver();
1570
1530
  var Comparator = require_comparator();
1571
1531
  var { ANY } = Comparator;
@@ -1635,7 +1595,6 @@ var require_outside = __commonJS({
1635
1595
  var require_gtr = __commonJS({
1636
1596
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/gtr.js"(exports, module) {
1637
1597
  "use strict";
1638
- init_esm_shims();
1639
1598
  var outside = require_outside();
1640
1599
  var gtr = (version, range, options) => outside(version, range, ">", options);
1641
1600
  module.exports = gtr;
@@ -1646,7 +1605,6 @@ var require_gtr = __commonJS({
1646
1605
  var require_ltr = __commonJS({
1647
1606
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/ltr.js"(exports, module) {
1648
1607
  "use strict";
1649
- init_esm_shims();
1650
1608
  var outside = require_outside();
1651
1609
  var ltr = (version, range, options) => outside(version, range, "<", options);
1652
1610
  module.exports = ltr;
@@ -1657,7 +1615,6 @@ var require_ltr = __commonJS({
1657
1615
  var require_intersects = __commonJS({
1658
1616
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/intersects.js"(exports, module) {
1659
1617
  "use strict";
1660
- init_esm_shims();
1661
1618
  var Range = require_range();
1662
1619
  var intersects = (r1, r2, options) => {
1663
1620
  r1 = new Range(r1, options);
@@ -1672,7 +1629,6 @@ var require_intersects = __commonJS({
1672
1629
  var require_simplify = __commonJS({
1673
1630
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/simplify.js"(exports, module) {
1674
1631
  "use strict";
1675
- init_esm_shims();
1676
1632
  var satisfies = require_satisfies();
1677
1633
  var compare = require_compare();
1678
1634
  module.exports = (versions, range, options) => {
@@ -1723,7 +1679,6 @@ var require_simplify = __commonJS({
1723
1679
  var require_subset = __commonJS({
1724
1680
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/ranges/subset.js"(exports, module) {
1725
1681
  "use strict";
1726
- init_esm_shims();
1727
1682
  var Range = require_range();
1728
1683
  var Comparator = require_comparator();
1729
1684
  var { ANY } = Comparator;
@@ -1886,7 +1841,6 @@ var require_subset = __commonJS({
1886
1841
  var require_semver2 = __commonJS({
1887
1842
  "../../node_modules/.pnpm/semver@7.7.4/node_modules/semver/index.js"(exports, module) {
1888
1843
  "use strict";
1889
- init_esm_shims();
1890
1844
  var internalRe = require_re();
1891
1845
  var constants = require_constants();
1892
1846
  var SemVer = require_semver();
@@ -10,9 +10,6 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
10
10
  if (typeof require !== "undefined") return require.apply(this, arguments);
11
11
  throw Error('Dynamic require of "' + x + '" is not supported');
12
12
  });
13
- var __esm = (fn, res) => function __init() {
14
- return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
15
- };
16
13
  var __commonJS = (cb, mod) => function __require2() {
17
14
  return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
18
15
  };
@@ -33,23 +30,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
33
30
  mod
34
31
  ));
35
32
 
36
- // ../../node_modules/.pnpm/tsup@8.5.1_postcss@8.5.8_tsx@4.21.0_typescript@5.9.3_yaml@2.8.3/node_modules/tsup/assets/esm_shims.js
37
- import path from "path";
38
- import { fileURLToPath } from "url";
39
- var getFilename, getDirname, __dirname;
40
- var init_esm_shims = __esm({
41
- "../../node_modules/.pnpm/tsup@8.5.1_postcss@8.5.8_tsx@4.21.0_typescript@5.9.3_yaml@2.8.3/node_modules/tsup/assets/esm_shims.js"() {
42
- "use strict";
43
- getFilename = () => fileURLToPath(import.meta.url);
44
- getDirname = () => path.dirname(getFilename());
45
- __dirname = /* @__PURE__ */ getDirname();
46
- }
47
- });
48
-
49
33
  export {
50
34
  __require,
51
35
  __commonJS,
52
- __toESM,
53
- __dirname,
54
- init_esm_shims
36
+ __toESM
55
37
  };
@@ -1,9 +1,4 @@
1
- import {
2
- init_esm_shims
3
- } from "./chunk-NOZSTVTV.js";
4
-
5
1
  // ../notes/dist/chunk-7TJSPQPW.js
6
- init_esm_shims();
7
2
  import chalk from "chalk";
8
3
  import * as fs2 from "fs";
9
4
  import * as path2 from "path";
@@ -216,7 +211,6 @@ function writeMarkdown(outputPath, contexts, config, dryRun, options) {
216
211
  }
217
212
 
218
213
  // ../notes/dist/chunk-F7MUVHZ2.js
219
- init_esm_shims();
220
214
  import * as fs from "fs";
221
215
  import * as path from "path";
222
216
  function splitByPackage(contexts) {
package/dist/cli.js CHANGED
@@ -2,16 +2,13 @@
2
2
  import {
3
3
  createPreviewCommand,
4
4
  createReleaseCommand
5
- } from "./chunk-FEMWVXXM.js";
5
+ } from "./chunk-6PUHZHPR.js";
6
6
  import {
7
7
  readPackageVersion
8
- } from "./chunk-6UI4L62T.js";
9
- import {
10
- init_esm_shims
11
- } from "./chunk-NOZSTVTV.js";
8
+ } from "./chunk-LTPOKPAP.js";
9
+ import "./chunk-QGM4M3NI.js";
12
10
 
13
11
  // src/cli.ts
14
- init_esm_shims();
15
12
  import { realpathSync } from "fs";
16
13
  import { fileURLToPath } from "url";
17
14
  import { Command } from "commander";
@@ -0,0 +1,9 @@
1
+ import {
2
+ execAsync,
3
+ execSync
4
+ } from "./chunk-FM2YXFEQ.js";
5
+ import "./chunk-QGM4M3NI.js";
6
+ export {
7
+ execAsync,
8
+ execSync
9
+ };
@@ -1,42 +1,38 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  createNotesCommand
4
- } from "./chunk-QUY54CTL.js";
4
+ } from "./chunk-BLLATA3P.js";
5
5
  import {
6
6
  detectMonorepo
7
- } from "./chunk-275AVVZE.js";
7
+ } from "./chunk-X6K5NWRA.js";
8
8
  import {
9
9
  createPublishCommand
10
- } from "./chunk-YG3UFSB6.js";
10
+ } from "./chunk-OOW3QGRT.js";
11
11
  import {
12
12
  createPreviewCommand,
13
13
  createReleaseCommand
14
- } from "./chunk-FEMWVXXM.js";
14
+ } from "./chunk-6PUHZHPR.js";
15
15
  import {
16
16
  EXIT_CODES,
17
17
  error,
18
18
  info,
19
19
  readPackageVersion,
20
20
  success
21
- } from "./chunk-6UI4L62T.js";
21
+ } from "./chunk-LTPOKPAP.js";
22
22
  import {
23
23
  createVersionCommand
24
- } from "./chunk-TJ2FXMEO.js";
25
- import "./chunk-QDGNHERK.js";
26
- import "./chunk-TC44YA6X.js";
27
- import "./chunk-3AKDKIIQ.js";
28
- import {
29
- init_esm_shims
30
- } from "./chunk-NOZSTVTV.js";
24
+ } from "./chunk-MKXM4ZCM.js";
25
+ import "./chunk-PJO2QZSV.js";
26
+ import "./chunk-FM2YXFEQ.js";
27
+ import "./chunk-HW3BIMUI.js";
28
+ import "./chunk-QGM4M3NI.js";
31
29
 
32
30
  // src/dispatcher.ts
33
- init_esm_shims();
34
31
  import { realpathSync } from "fs";
35
32
  import { fileURLToPath } from "url";
36
33
  import { Command as Command2 } from "commander";
37
34
 
38
35
  // src/init-command.ts
39
- init_esm_shims();
40
36
  import * as fs from "fs";
41
37
  import { Command } from "commander";
42
38
  function createInitCommand() {
@@ -12,13 +12,13 @@ import {
12
12
  flushPendingWrites,
13
13
  getJsonData,
14
14
  loadConfig2
15
- } from "./chunk-TJ2FXMEO.js";
16
- import "./chunk-QDGNHERK.js";
17
- import "./chunk-TC44YA6X.js";
15
+ } from "./chunk-MKXM4ZCM.js";
16
+ import "./chunk-PJO2QZSV.js";
17
+ import "./chunk-FM2YXFEQ.js";
18
18
  import {
19
19
  BaseVersionError
20
- } from "./chunk-3AKDKIIQ.js";
21
- import "./chunk-NOZSTVTV.js";
20
+ } from "./chunk-HW3BIMUI.js";
21
+ import "./chunk-QGM4M3NI.js";
22
22
  export {
23
23
  BaseVersionError,
24
24
  PackageProcessor,
@@ -1,15 +1,6 @@
1
- import {
2
- init_esm_shims
3
- } from "./chunk-NOZSTVTV.js";
4
-
5
- // ../../node_modules/.pnpm/conventional-commits-filter@5.0.0/node_modules/conventional-commits-filter/dist/index.js
6
- init_esm_shims();
7
-
8
- // ../../node_modules/.pnpm/conventional-commits-filter@5.0.0/node_modules/conventional-commits-filter/dist/RevertedCommitsFilter.js
9
- init_esm_shims();
1
+ import "./chunk-QGM4M3NI.js";
10
2
 
11
3
  // ../../node_modules/.pnpm/conventional-commits-filter@5.0.0/node_modules/conventional-commits-filter/dist/utils.js
12
- init_esm_shims();
13
4
  function isMatch(object, source) {
14
5
  let aValue;
15
6
  let bValue;
@@ -87,7 +78,6 @@ var RevertedCommitsFilter = class {
87
78
  };
88
79
 
89
80
  // ../../node_modules/.pnpm/conventional-commits-filter@5.0.0/node_modules/conventional-commits-filter/dist/filters.js
90
- init_esm_shims();
91
81
  import { Transform } from "stream";
92
82
  async function* filterRevertedCommits(commits) {
93
83
  const filter = new RevertedCommitsFilter();
@@ -19,7 +19,7 @@ import {
19
19
  runPipeline,
20
20
  saveAuth,
21
21
  writeJson
22
- } from "./chunk-QUY54CTL.js";
22
+ } from "./chunk-BLLATA3P.js";
23
23
  import {
24
24
  aggregateToRoot,
25
25
  detectMonorepo,
@@ -27,8 +27,8 @@ import {
27
27
  renderMarkdown,
28
28
  writeMarkdown,
29
29
  writeMonorepoChangelogs
30
- } from "./chunk-275AVVZE.js";
31
- import "./chunk-NOZSTVTV.js";
30
+ } from "./chunk-X6K5NWRA.js";
31
+ import "./chunk-QGM4M3NI.js";
32
32
  export {
33
33
  ConfigError2 as ConfigError,
34
34
  GitHubError,
@@ -1,18 +1,6 @@
1
- import {
2
- init_esm_shims
3
- } from "./chunk-NOZSTVTV.js";
4
-
5
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/index.js
6
- init_esm_shims();
7
-
8
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/types.js
9
- init_esm_shims();
10
-
11
- // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/CommitParser.js
12
- init_esm_shims();
1
+ import "./chunk-QGM4M3NI.js";
13
2
 
14
3
  // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/regex.js
15
- init_esm_shims();
16
4
  var nomatchRegex = /(?!.*)/;
17
5
  function join(parts, joiner) {
18
6
  return parts.map((val) => val.trim()).filter(Boolean).join(joiner);
@@ -55,7 +43,6 @@ function getParserRegexes(options = {}) {
55
43
  }
56
44
 
57
45
  // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/utils.js
58
- init_esm_shims();
59
46
  var SCISSOR = "------------------------ >8 ------------------------";
60
47
  function trimNewLines(input) {
61
48
  const matches = input.match(/[^\r\n]/);
@@ -96,7 +83,6 @@ function assignMatchedCorrespondence(target, matches, correspondence) {
96
83
  }
97
84
 
98
85
  // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/options.js
99
- init_esm_shims();
100
86
  var defaultOptions = {
101
87
  noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
102
88
  issuePrefixes: ["#"],
@@ -417,7 +403,6 @@ var CommitParser = class {
417
403
  };
418
404
 
419
405
  // ../../node_modules/.pnpm/conventional-commits-parser@6.2.1/node_modules/conventional-commits-parser/dist/stream.js
420
- init_esm_shims();
421
406
  import { Transform } from "stream";
422
407
  function parseCommits(options = {}) {
423
408
  const warnOption = options.warn;
@@ -17,9 +17,9 @@ import {
17
17
  parseInput,
18
18
  runPipeline,
19
19
  updateCargoVersion
20
- } from "./chunk-YG3UFSB6.js";
21
- import "./chunk-QDGNHERK.js";
22
- import "./chunk-NOZSTVTV.js";
20
+ } from "./chunk-OOW3QGRT.js";
21
+ import "./chunk-PJO2QZSV.js";
22
+ import "./chunk-QGM4M3NI.js";
23
23
  export {
24
24
  BasePublishError,
25
25
  PipelineError,
package/dist/index.js CHANGED
@@ -1,13 +1,8 @@
1
1
  import {
2
2
  runPreview,
3
3
  runRelease
4
- } from "./chunk-6UI4L62T.js";
5
- import {
6
- init_esm_shims
7
- } from "./chunk-NOZSTVTV.js";
8
-
9
- // src/index.ts
10
- init_esm_shims();
4
+ } from "./chunk-LTPOKPAP.js";
5
+ import "./chunk-QGM4M3NI.js";
11
6
  export {
12
7
  runPreview,
13
8
  runRelease
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@releasekit/release",
3
- "version": "0.7.12",
3
+ "version": "0.7.13",
4
4
  "description": "Unified release pipeline: version, changelog, and publish in a single command",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",
@@ -50,9 +50,9 @@
50
50
  "commander": "^14.0.3",
51
51
  "smol-toml": "^1.6.1",
52
52
  "zod": "^4.3.6",
53
- "@releasekit/publish": "0.7.12",
54
- "@releasekit/notes": "0.7.12",
55
- "@releasekit/version": "0.7.12"
53
+ "@releasekit/notes": "0.7.13",
54
+ "@releasekit/publish": "0.7.13",
55
+ "@releasekit/version": "0.7.13"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@biomejs/biome": "^2.4.10",
@@ -1,12 +0,0 @@
1
- import {
2
- BaseVersionError
3
- } from "./chunk-3AKDKIIQ.js";
4
- import {
5
- init_esm_shims
6
- } from "./chunk-NOZSTVTV.js";
7
-
8
- // ../version/dist/baseError-DQHIJACF.js
9
- init_esm_shims();
10
- export {
11
- BaseVersionError
12
- };