@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.
- package/dist/{aggregator-IUQUAVJC-OQZ5KHNS.js → aggregator-IUQUAVJC-FMVZQKPK.js} +2 -7
- package/dist/baseError-DQHIJACF-MKENOKQI.js +7 -0
- package/dist/{chunk-FEMWVXXM.js → chunk-6PUHZHPR.js} +1 -6
- package/dist/{chunk-QUY54CTL.js → chunk-BLLATA3P.js} +4 -384
- package/dist/{chunk-TC44YA6X.js → chunk-FM2YXFEQ.js} +0 -5
- package/dist/{chunk-3AKDKIIQ.js → chunk-HW3BIMUI.js} +0 -5
- package/dist/{chunk-6UI4L62T.js → chunk-LTPOKPAP.js} +4 -18
- package/dist/{chunk-TJ2FXMEO.js → chunk-MKXM4ZCM.js} +14 -95
- package/dist/{chunk-YG3UFSB6.js → chunk-OOW3QGRT.js} +3 -8
- package/dist/{chunk-QDGNHERK.js → chunk-PJO2QZSV.js} +2 -48
- package/dist/{chunk-NOZSTVTV.js → chunk-QGM4M3NI.js} +1 -19
- package/dist/{chunk-275AVVZE.js → chunk-X6K5NWRA.js} +0 -6
- package/dist/cli.js +3 -6
- package/dist/commandExecutor-E44ID5U4-ZQZNV25N.js +9 -0
- package/dist/dispatcher.js +10 -14
- package/dist/{dist-7RSHM4ZO.js → dist-3OF3AQKY.js} +5 -5
- package/dist/{dist-OP3T7BV6.js → dist-J7662OKQ.js} +1 -11
- package/dist/{dist-HVRDLODI.js → dist-KJOL5QEY.js} +3 -3
- package/dist/{dist-TLL55DUA.js → dist-WN32E32Z.js} +1 -16
- package/dist/{dist-4RETAAT2.js → dist-WSR7GQXK.js} +3 -3
- package/dist/index.js +2 -7
- package/package.json +4 -4
- package/dist/baseError-DQHIJACF-4NWA3LJM.js +0 -12
- package/dist/commandExecutor-E44ID5U4-P3RGRKGM.js +0 -14
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
init_esm_shims
|
|
3
|
-
} from "./chunk-NOZSTVTV.js";
|
|
4
|
-
|
|
5
1
|
// ../version/dist/chunk-LMPZV35Z.js
|
|
6
|
-
init_esm_shims();
|
|
7
2
|
import { execFile, execFileSync } from "child_process";
|
|
8
3
|
var execAsync = (file, args, options) => {
|
|
9
4
|
const defaultOptions = { maxBuffer: 1024 * 1024 * 10, ...options };
|
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
init_esm_shims
|
|
3
|
-
} from "./chunk-NOZSTVTV.js";
|
|
4
|
-
|
|
5
1
|
// ../core/dist/index.js
|
|
6
|
-
init_esm_shims();
|
|
7
2
|
import * as fs from "fs";
|
|
8
3
|
import * as path from "path";
|
|
9
4
|
import { fileURLToPath } from "url";
|
|
@@ -103,11 +98,9 @@ var EXIT_CODES = {
|
|
|
103
98
|
};
|
|
104
99
|
|
|
105
100
|
// src/release.ts
|
|
106
|
-
init_esm_shims();
|
|
107
101
|
import { execSync } from "child_process";
|
|
108
102
|
|
|
109
103
|
// ../config/dist/index.js
|
|
110
|
-
init_esm_shims();
|
|
111
104
|
import * as TOML from "smol-toml";
|
|
112
105
|
import * as fs3 from "fs";
|
|
113
106
|
import * as path3 from "path";
|
|
@@ -562,7 +555,7 @@ async function runRelease(inputOptions) {
|
|
|
562
555
|
return null;
|
|
563
556
|
}
|
|
564
557
|
if (!options.dryRun) {
|
|
565
|
-
const { flushPendingWrites } = await import("./dist-
|
|
558
|
+
const { flushPendingWrites } = await import("./dist-3OF3AQKY.js");
|
|
566
559
|
flushPendingWrites();
|
|
567
560
|
}
|
|
568
561
|
info(`Found ${versionOutput.updates.length} package update(s)`);
|
|
@@ -591,7 +584,7 @@ async function runRelease(inputOptions) {
|
|
|
591
584
|
return { versionOutput, notesGenerated, packageNotes, releaseNotes, publishOutput };
|
|
592
585
|
}
|
|
593
586
|
async function runVersionStep(options) {
|
|
594
|
-
const { loadConfig: loadConfig2, VersionEngine, enableJsonOutput, getJsonData } = await import("./dist-
|
|
587
|
+
const { loadConfig: loadConfig2, VersionEngine, enableJsonOutput, getJsonData } = await import("./dist-3OF3AQKY.js");
|
|
595
588
|
enableJsonOutput(options.dryRun);
|
|
596
589
|
const config = loadConfig2({ cwd: options.projectDir, configPath: options.config });
|
|
597
590
|
if (options.dryRun) config.dryRun = true;
|
|
@@ -624,14 +617,14 @@ async function runVersionStep(options) {
|
|
|
624
617
|
return getJsonData();
|
|
625
618
|
}
|
|
626
619
|
async function runNotesStep(versionOutput, options) {
|
|
627
|
-
const { parseVersionOutput, runPipeline, loadConfig: loadConfig2 } = await import("./dist-
|
|
620
|
+
const { parseVersionOutput, runPipeline, loadConfig: loadConfig2 } = await import("./dist-KJOL5QEY.js");
|
|
628
621
|
const config = loadConfig2(options.projectDir, options.config);
|
|
629
622
|
const input = parseVersionOutput(JSON.stringify(versionOutput));
|
|
630
623
|
const result = await runPipeline(input, config, options.dryRun);
|
|
631
624
|
return { packageNotes: result.packageNotes, releaseNotes: result.releaseNotes, files: result.files };
|
|
632
625
|
}
|
|
633
626
|
async function runPublishStep(versionOutput, options, releaseNotes, additionalFiles) {
|
|
634
|
-
const { runPipeline, loadConfig: loadConfig2 } = await import("./dist-
|
|
627
|
+
const { runPipeline, loadConfig: loadConfig2 } = await import("./dist-WSR7GQXK.js");
|
|
635
628
|
const config = loadConfig2({ configPath: options.config });
|
|
636
629
|
if (options.branch) {
|
|
637
630
|
config.git.branch = options.branch;
|
|
@@ -652,11 +645,7 @@ async function runPublishStep(versionOutput, options, releaseNotes, additionalFi
|
|
|
652
645
|
return runPipeline(versionOutput, config, publishOptions);
|
|
653
646
|
}
|
|
654
647
|
|
|
655
|
-
// src/preview.ts
|
|
656
|
-
init_esm_shims();
|
|
657
|
-
|
|
658
648
|
// src/preview-context.ts
|
|
659
|
-
init_esm_shims();
|
|
660
649
|
import * as fs4 from "fs";
|
|
661
650
|
function resolvePreviewContext(opts) {
|
|
662
651
|
const token = process.env.GITHUB_TOKEN;
|
|
@@ -700,7 +689,6 @@ function resolveRepo(cliValue) {
|
|
|
700
689
|
}
|
|
701
690
|
|
|
702
691
|
// src/preview-detect.ts
|
|
703
|
-
init_esm_shims();
|
|
704
692
|
import * as fs5 from "fs";
|
|
705
693
|
import * as path4 from "path";
|
|
706
694
|
function detectPrerelease(packagePaths, projectDir) {
|
|
@@ -726,7 +714,6 @@ function parsePrerelease(version) {
|
|
|
726
714
|
}
|
|
727
715
|
|
|
728
716
|
// src/preview-format.ts
|
|
729
|
-
init_esm_shims();
|
|
730
717
|
var MARKER = "<!-- releasekit-preview -->";
|
|
731
718
|
var FOOTER = "*Updated automatically by [ReleaseKit](https://github.com/goosewobbler/releasekit)*";
|
|
732
719
|
var TYPE_LABELS = {
|
|
@@ -897,7 +884,6 @@ function capitalize(str) {
|
|
|
897
884
|
}
|
|
898
885
|
|
|
899
886
|
// src/preview-github.ts
|
|
900
|
-
init_esm_shims();
|
|
901
887
|
import { Octokit } from "@octokit/rest";
|
|
902
888
|
function createOctokit(token) {
|
|
903
889
|
return new Octokit({ auth: token });
|
|
@@ -1,27 +1,25 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_semver
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PJO2QZSV.js";
|
|
4
4
|
import {
|
|
5
5
|
execAsync,
|
|
6
6
|
execSync
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-FM2YXFEQ.js";
|
|
8
8
|
import {
|
|
9
9
|
BaseVersionError,
|
|
10
10
|
ReleaseKitError,
|
|
11
11
|
sanitizePackageName
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-HW3BIMUI.js";
|
|
13
13
|
import {
|
|
14
14
|
__commonJS,
|
|
15
15
|
__require,
|
|
16
|
-
__toESM
|
|
17
|
-
|
|
18
|
-
} from "./chunk-NOZSTVTV.js";
|
|
16
|
+
__toESM
|
|
17
|
+
} from "./chunk-QGM4M3NI.js";
|
|
19
18
|
|
|
20
19
|
// ../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/constants.js
|
|
21
20
|
var require_constants = __commonJS({
|
|
22
21
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/constants.js"(exports, module) {
|
|
23
22
|
"use strict";
|
|
24
|
-
init_esm_shims();
|
|
25
23
|
var WIN_SLASH = "\\\\/";
|
|
26
24
|
var WIN_NO_SLASH = `[^${WIN_SLASH}]`;
|
|
27
25
|
var DEFAULT_MAX_EXTGLOB_RECURSION = 0;
|
|
@@ -224,7 +222,6 @@ var require_constants = __commonJS({
|
|
|
224
222
|
var require_utils = __commonJS({
|
|
225
223
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/utils.js"(exports) {
|
|
226
224
|
"use strict";
|
|
227
|
-
init_esm_shims();
|
|
228
225
|
var {
|
|
229
226
|
REGEX_BACKSLASH,
|
|
230
227
|
REGEX_REMOVE_BACKSLASH,
|
|
@@ -289,7 +286,6 @@ var require_utils = __commonJS({
|
|
|
289
286
|
var require_scan = __commonJS({
|
|
290
287
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/scan.js"(exports, module) {
|
|
291
288
|
"use strict";
|
|
292
|
-
init_esm_shims();
|
|
293
289
|
var utils = require_utils();
|
|
294
290
|
var {
|
|
295
291
|
CHAR_ASTERISK: CHAR_ASTERISK2,
|
|
@@ -620,7 +616,6 @@ var require_scan = __commonJS({
|
|
|
620
616
|
var require_parse = __commonJS({
|
|
621
617
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/parse.js"(exports, module) {
|
|
622
618
|
"use strict";
|
|
623
|
-
init_esm_shims();
|
|
624
619
|
var constants = require_constants();
|
|
625
620
|
var utils = require_utils();
|
|
626
621
|
var {
|
|
@@ -1618,7 +1613,6 @@ var require_parse = __commonJS({
|
|
|
1618
1613
|
var require_picomatch = __commonJS({
|
|
1619
1614
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/lib/picomatch.js"(exports, module) {
|
|
1620
1615
|
"use strict";
|
|
1621
|
-
init_esm_shims();
|
|
1622
1616
|
var scan = require_scan();
|
|
1623
1617
|
var parse2 = require_parse();
|
|
1624
1618
|
var utils = require_utils();
|
|
@@ -1759,7 +1753,6 @@ var require_picomatch = __commonJS({
|
|
|
1759
1753
|
var require_picomatch2 = __commonJS({
|
|
1760
1754
|
"../../node_modules/.pnpm/picomatch@4.0.4/node_modules/picomatch/index.js"(exports, module) {
|
|
1761
1755
|
"use strict";
|
|
1762
|
-
init_esm_shims();
|
|
1763
1756
|
var pico = require_picomatch();
|
|
1764
1757
|
var utils = require_utils();
|
|
1765
1758
|
function picomatch2(glob2, options, returnState = false) {
|
|
@@ -1777,7 +1770,6 @@ var require_picomatch2 = __commonJS({
|
|
|
1777
1770
|
var require_unicode = __commonJS({
|
|
1778
1771
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/unicode.js"(exports, module) {
|
|
1779
1772
|
"use strict";
|
|
1780
|
-
init_esm_shims();
|
|
1781
1773
|
var Uni = module.exports;
|
|
1782
1774
|
module.exports.isWhiteSpace = function isWhiteSpace(x) {
|
|
1783
1775
|
return x === " " || x === "\xA0" || x === "\uFEFF" || x >= " " && x <= "\r" || x === "\u1680" || x >= "\u2000" && x <= "\u200A" || x === "\u2028" || x === "\u2029" || x === "\u202F" || x === "\u205F" || x === "\u3000";
|
|
@@ -1806,7 +1798,6 @@ var require_unicode = __commonJS({
|
|
|
1806
1798
|
var require_parse2 = __commonJS({
|
|
1807
1799
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/parse.js"(exports, module) {
|
|
1808
1800
|
"use strict";
|
|
1809
|
-
init_esm_shims();
|
|
1810
1801
|
var Uni = require_unicode();
|
|
1811
1802
|
function isHexDigit(x) {
|
|
1812
1803
|
return x >= "0" && x <= "9" || x >= "A" && x <= "F" || x >= "a" && x <= "f";
|
|
@@ -2339,7 +2330,6 @@ var require_parse2 = __commonJS({
|
|
|
2339
2330
|
var require_stringify = __commonJS({
|
|
2340
2331
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/stringify.js"(exports, module) {
|
|
2341
2332
|
"use strict";
|
|
2342
|
-
init_esm_shims();
|
|
2343
2333
|
var Uni = require_unicode();
|
|
2344
2334
|
if (!(function f() {
|
|
2345
2335
|
}).name) {
|
|
@@ -2603,7 +2593,6 @@ var require_stringify = __commonJS({
|
|
|
2603
2593
|
var require_analyze = __commonJS({
|
|
2604
2594
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/analyze.js"(exports, module) {
|
|
2605
2595
|
"use strict";
|
|
2606
|
-
init_esm_shims();
|
|
2607
2596
|
var tokenize = require_parse2().tokenize;
|
|
2608
2597
|
module.exports.analyze = function analyzeJSON(input, options) {
|
|
2609
2598
|
if (options == null) options = {};
|
|
@@ -2682,7 +2671,6 @@ var require_analyze = __commonJS({
|
|
|
2682
2671
|
var require_document = __commonJS({
|
|
2683
2672
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/document.js"(exports, module) {
|
|
2684
2673
|
"use strict";
|
|
2685
|
-
init_esm_shims();
|
|
2686
2674
|
var assert = __require("assert");
|
|
2687
2675
|
var tokenize = require_parse2().tokenize;
|
|
2688
2676
|
var stringify2 = require_stringify().stringify;
|
|
@@ -3022,7 +3010,6 @@ var require_document = __commonJS({
|
|
|
3022
3010
|
var require_utils2 = __commonJS({
|
|
3023
3011
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/lib/utils.js"(exports, module) {
|
|
3024
3012
|
"use strict";
|
|
3025
|
-
init_esm_shims();
|
|
3026
3013
|
var FS = __require("fs");
|
|
3027
3014
|
var jju2 = require_jju();
|
|
3028
3015
|
module.exports.register = function() {
|
|
@@ -3060,7 +3047,6 @@ var require_utils2 = __commonJS({
|
|
|
3060
3047
|
var require_jju = __commonJS({
|
|
3061
3048
|
"../../node_modules/.pnpm/jju@1.4.0/node_modules/jju/index.js"(exports, module) {
|
|
3062
3049
|
"use strict";
|
|
3063
|
-
init_esm_shims();
|
|
3064
3050
|
module.exports.__defineGetter__("parse", function() {
|
|
3065
3051
|
return require_parse2().parse;
|
|
3066
3052
|
});
|
|
@@ -3082,11 +3068,7 @@ var require_jju = __commonJS({
|
|
|
3082
3068
|
}
|
|
3083
3069
|
});
|
|
3084
3070
|
|
|
3085
|
-
// ../version/dist/index.js
|
|
3086
|
-
init_esm_shims();
|
|
3087
|
-
|
|
3088
3071
|
// ../version/dist/chunk-UBCKZYTO.js
|
|
3089
|
-
init_esm_shims();
|
|
3090
3072
|
import * as fs4 from "fs";
|
|
3091
3073
|
import * as path8 from "path";
|
|
3092
3074
|
import * as TOML from "smol-toml";
|
|
@@ -3100,20 +3082,7 @@ import * as path22 from "path";
|
|
|
3100
3082
|
import fs42 from "fs";
|
|
3101
3083
|
import { cwd } from "process";
|
|
3102
3084
|
|
|
3103
|
-
// ../../node_modules/.pnpm/conventional-recommended-bump@11.2.0/node_modules/conventional-recommended-bump/dist/index.js
|
|
3104
|
-
init_esm_shims();
|
|
3105
|
-
|
|
3106
|
-
// ../../node_modules/.pnpm/conventional-recommended-bump@11.2.0/node_modules/conventional-recommended-bump/dist/bumper.js
|
|
3107
|
-
init_esm_shims();
|
|
3108
|
-
|
|
3109
|
-
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.5.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/index.js
|
|
3110
|
-
init_esm_shims();
|
|
3111
|
-
|
|
3112
|
-
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.5.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/types.js
|
|
3113
|
-
init_esm_shims();
|
|
3114
|
-
|
|
3115
3085
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.5.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/utils.js
|
|
3116
|
-
init_esm_shims();
|
|
3117
3086
|
function formatArgs(...args) {
|
|
3118
3087
|
return args.reduce((finalArgs, arg) => {
|
|
3119
3088
|
if (arg) {
|
|
@@ -3127,11 +3096,9 @@ function toArray(value) {
|
|
|
3127
3096
|
}
|
|
3128
3097
|
|
|
3129
3098
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.5.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/GitClient.js
|
|
3130
|
-
init_esm_shims();
|
|
3131
3099
|
import { spawn } from "child_process";
|
|
3132
3100
|
|
|
3133
3101
|
// ../../node_modules/.pnpm/@simple-libs+stream-utils@1.1.0/node_modules/@simple-libs/stream-utils/dist/index.js
|
|
3134
|
-
init_esm_shims();
|
|
3135
3102
|
async function toArray2(iterable) {
|
|
3136
3103
|
const result = [];
|
|
3137
3104
|
for await (const item of iterable) {
|
|
@@ -3166,7 +3133,6 @@ async function* splitStream(stream, separator) {
|
|
|
3166
3133
|
}
|
|
3167
3134
|
|
|
3168
3135
|
// ../../node_modules/.pnpm/@simple-libs+child-process-utils@1.0.1/node_modules/@simple-libs/child-process-utils/dist/index.js
|
|
3169
|
-
init_esm_shims();
|
|
3170
3136
|
async function exitCode(process2) {
|
|
3171
3137
|
if (process2.exitCode !== null) {
|
|
3172
3138
|
return process2.exitCode;
|
|
@@ -3446,7 +3412,6 @@ var GitClient = class {
|
|
|
3446
3412
|
};
|
|
3447
3413
|
|
|
3448
3414
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.5.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.js
|
|
3449
|
-
init_esm_shims();
|
|
3450
3415
|
var import_semver = __toESM(require_semver(), 1);
|
|
3451
3416
|
var ConventionalGitClient = class extends GitClient {
|
|
3452
3417
|
deps = null;
|
|
@@ -3455,8 +3420,8 @@ var ConventionalGitClient = class extends GitClient {
|
|
|
3455
3420
|
return this.deps;
|
|
3456
3421
|
}
|
|
3457
3422
|
this.deps = Promise.all([
|
|
3458
|
-
import("./dist-
|
|
3459
|
-
import("./dist-
|
|
3423
|
+
import("./dist-WN32E32Z.js").then(({ parseCommits }) => parseCommits),
|
|
3424
|
+
import("./dist-J7662OKQ.js").then(({ filterRevertedCommits }) => filterRevertedCommits)
|
|
3460
3425
|
]);
|
|
3461
3426
|
return this.deps;
|
|
3462
3427
|
}
|
|
@@ -3548,14 +3513,7 @@ var ConventionalGitClient = class extends GitClient {
|
|
|
3548
3513
|
}
|
|
3549
3514
|
};
|
|
3550
3515
|
|
|
3551
|
-
// ../../node_modules/.pnpm/conventional-changelog-preset-loader@5.0.0/node_modules/conventional-changelog-preset-loader/dist/index.js
|
|
3552
|
-
init_esm_shims();
|
|
3553
|
-
|
|
3554
|
-
// ../../node_modules/.pnpm/conventional-changelog-preset-loader@5.0.0/node_modules/conventional-changelog-preset-loader/dist/types.js
|
|
3555
|
-
init_esm_shims();
|
|
3556
|
-
|
|
3557
3516
|
// ../../node_modules/.pnpm/conventional-changelog-preset-loader@5.0.0/node_modules/conventional-changelog-preset-loader/dist/presetLoader.js
|
|
3558
|
-
init_esm_shims();
|
|
3559
3517
|
import path from "path";
|
|
3560
3518
|
function resolvePresetNameVariants(preset) {
|
|
3561
3519
|
if (path.isAbsolute(preset)) {
|
|
@@ -3629,7 +3587,6 @@ function createPresetLoader(moduleLoader) {
|
|
|
3629
3587
|
var loadPreset = createPresetLoader((preset) => import(preset));
|
|
3630
3588
|
|
|
3631
3589
|
// ../../node_modules/.pnpm/conventional-recommended-bump@11.2.0/node_modules/conventional-recommended-bump/dist/utils.js
|
|
3632
|
-
init_esm_shims();
|
|
3633
3590
|
function isIterable(value) {
|
|
3634
3591
|
return value !== null && (typeof value[Symbol.iterator] === "function" || typeof value[Symbol.asyncIterator] === "function");
|
|
3635
3592
|
}
|
|
@@ -3804,17 +3761,7 @@ var Bumper = class {
|
|
|
3804
3761
|
// ../version/dist/chunk-UBCKZYTO.js
|
|
3805
3762
|
var import_semver3 = __toESM(require_semver(), 1);
|
|
3806
3763
|
|
|
3807
|
-
// ../../node_modules/.pnpm/git-semver-tags@8.0.1_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/git-semver-tags/src/index.js
|
|
3808
|
-
init_esm_shims();
|
|
3809
|
-
|
|
3810
|
-
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.6.0_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/index.js
|
|
3811
|
-
init_esm_shims();
|
|
3812
|
-
|
|
3813
|
-
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.6.0_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/types.js
|
|
3814
|
-
init_esm_shims();
|
|
3815
|
-
|
|
3816
3764
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.6.0_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/utils.js
|
|
3817
|
-
init_esm_shims();
|
|
3818
3765
|
function formatArgs2(...args) {
|
|
3819
3766
|
return args.reduce((finalArgs, arg) => {
|
|
3820
3767
|
if (arg) {
|
|
@@ -3828,11 +3775,9 @@ function toArray3(value) {
|
|
|
3828
3775
|
}
|
|
3829
3776
|
|
|
3830
3777
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.6.0_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/GitClient.js
|
|
3831
|
-
init_esm_shims();
|
|
3832
3778
|
import { spawn as spawn2 } from "child_process";
|
|
3833
3779
|
|
|
3834
3780
|
// ../../node_modules/.pnpm/@simple-libs+stream-utils@1.2.0/node_modules/@simple-libs/stream-utils/dist/index.js
|
|
3835
|
-
init_esm_shims();
|
|
3836
3781
|
async function toArray4(iterable) {
|
|
3837
3782
|
const result = [];
|
|
3838
3783
|
for await (const item of iterable) {
|
|
@@ -3867,7 +3812,6 @@ async function* splitStream2(stream, separator) {
|
|
|
3867
3812
|
}
|
|
3868
3813
|
|
|
3869
3814
|
// ../../node_modules/.pnpm/@simple-libs+child-process-utils@1.0.2/node_modules/@simple-libs/child-process-utils/dist/index.js
|
|
3870
|
-
init_esm_shims();
|
|
3871
3815
|
async function exitCode2(process2) {
|
|
3872
3816
|
if (process2.exitCode !== null) {
|
|
3873
3817
|
return process2.exitCode;
|
|
@@ -4147,7 +4091,6 @@ var GitClient2 = class {
|
|
|
4147
4091
|
};
|
|
4148
4092
|
|
|
4149
4093
|
// ../../node_modules/.pnpm/@conventional-changelog+git-client@2.6.0_conventional-commits-filter@5.0.0_conventional-commits-parser@6.2.1/node_modules/@conventional-changelog/git-client/dist/ConventionalGitClient.js
|
|
4150
|
-
init_esm_shims();
|
|
4151
4094
|
var import_semver2 = __toESM(require_semver(), 1);
|
|
4152
4095
|
function packagePrefix2(packageName) {
|
|
4153
4096
|
if (!packageName) {
|
|
@@ -4162,8 +4105,8 @@ var ConventionalGitClient2 = class extends GitClient2 {
|
|
|
4162
4105
|
return this.deps;
|
|
4163
4106
|
}
|
|
4164
4107
|
this.deps = Promise.all([
|
|
4165
|
-
import("./dist-
|
|
4166
|
-
import("./dist-
|
|
4108
|
+
import("./dist-WN32E32Z.js").then(({ parseCommits }) => parseCommits),
|
|
4109
|
+
import("./dist-J7662OKQ.js").then(({ filterRevertedCommits }) => filterRevertedCommits)
|
|
4167
4110
|
]);
|
|
4168
4111
|
return this.deps;
|
|
4169
4112
|
}
|
|
@@ -4285,12 +4228,10 @@ var import_semver4 = __toESM(require_semver(), 1);
|
|
|
4285
4228
|
import chalk from "chalk";
|
|
4286
4229
|
|
|
4287
4230
|
// ../../node_modules/.pnpm/figlet@1.11.0/node_modules/figlet/dist/node-figlet.mjs
|
|
4288
|
-
init_esm_shims();
|
|
4289
4231
|
import * as fs from "fs";
|
|
4290
4232
|
import * as path2 from "path";
|
|
4291
4233
|
|
|
4292
4234
|
// ../../node_modules/.pnpm/figlet@1.11.0/node_modules/figlet/dist/figlet-C8Ns3Vyn.js
|
|
4293
|
-
init_esm_shims();
|
|
4294
4235
|
var LAYOUT = {
|
|
4295
4236
|
FULL_WIDTH: 0,
|
|
4296
4237
|
FITTING: 1,
|
|
@@ -5626,9 +5567,9 @@ var figlet = (() => {
|
|
|
5626
5567
|
|
|
5627
5568
|
// ../../node_modules/.pnpm/figlet@1.11.0/node_modules/figlet/dist/node-figlet.mjs
|
|
5628
5569
|
import { fileURLToPath } from "url";
|
|
5629
|
-
var
|
|
5630
|
-
var
|
|
5631
|
-
var fontPath = path2.join(
|
|
5570
|
+
var __filename = fileURLToPath(import.meta.url);
|
|
5571
|
+
var __dirname = path2.dirname(__filename);
|
|
5572
|
+
var fontPath = path2.join(__dirname, "/../fonts/");
|
|
5632
5573
|
var nodeFiglet = figlet;
|
|
5633
5574
|
nodeFiglet.defaults({ fontPath });
|
|
5634
5575
|
nodeFiglet.loadFont = function(name, callback2) {
|
|
@@ -5728,14 +5669,7 @@ var import_semver5 = __toESM(require_semver(), 1);
|
|
|
5728
5669
|
import * as fs9 from "fs";
|
|
5729
5670
|
import path72 from "path";
|
|
5730
5671
|
|
|
5731
|
-
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/index.js
|
|
5732
|
-
init_esm_shims();
|
|
5733
|
-
|
|
5734
|
-
// ../../node_modules/.pnpm/brace-expansion@5.0.5/node_modules/brace-expansion/dist/esm/index.js
|
|
5735
|
-
init_esm_shims();
|
|
5736
|
-
|
|
5737
5672
|
// ../../node_modules/.pnpm/balanced-match@4.0.4/node_modules/balanced-match/dist/esm/index.js
|
|
5738
|
-
init_esm_shims();
|
|
5739
5673
|
var balanced = (a, b, str2) => {
|
|
5740
5674
|
const ma = a instanceof RegExp ? maybeMatch(a, str2) : a;
|
|
5741
5675
|
const mb = b instanceof RegExp ? maybeMatch(b, str2) : b;
|
|
@@ -5949,7 +5883,6 @@ function expand_(str2, max, isTop) {
|
|
|
5949
5883
|
}
|
|
5950
5884
|
|
|
5951
5885
|
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/assert-valid-pattern.js
|
|
5952
|
-
init_esm_shims();
|
|
5953
5886
|
var MAX_PATTERN_LENGTH = 1024 * 64;
|
|
5954
5887
|
var assertValidPattern = (pattern) => {
|
|
5955
5888
|
if (typeof pattern !== "string") {
|
|
@@ -5960,11 +5893,7 @@ var assertValidPattern = (pattern) => {
|
|
|
5960
5893
|
}
|
|
5961
5894
|
};
|
|
5962
5895
|
|
|
5963
|
-
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/ast.js
|
|
5964
|
-
init_esm_shims();
|
|
5965
|
-
|
|
5966
5896
|
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/brace-expressions.js
|
|
5967
|
-
init_esm_shims();
|
|
5968
5897
|
var posixClasses = {
|
|
5969
5898
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
5970
5899
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -6074,7 +6003,6 @@ var parseClass = (glob2, position) => {
|
|
|
6074
6003
|
};
|
|
6075
6004
|
|
|
6076
6005
|
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/unescape.js
|
|
6077
|
-
init_esm_shims();
|
|
6078
6006
|
var unescape = (s, { windowsPathsNoEscape = false, magicalBraces = true } = {}) => {
|
|
6079
6007
|
if (magicalBraces) {
|
|
6080
6008
|
return windowsPathsNoEscape ? s.replace(/\[([^/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^/\\])\]/g, "$1$2").replace(/\\([^/])/g, "$1");
|
|
@@ -6727,7 +6655,6 @@ var AST = class {
|
|
|
6727
6655
|
_a = AST;
|
|
6728
6656
|
|
|
6729
6657
|
// ../../node_modules/.pnpm/minimatch@10.2.5/node_modules/minimatch/dist/esm/escape.js
|
|
6730
|
-
init_esm_shims();
|
|
6731
6658
|
var escape = (s, { windowsPathsNoEscape = false, magicalBraces = false } = {}) => {
|
|
6732
6659
|
if (magicalBraces) {
|
|
6733
6660
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]{}]/g, "[$&]") : s.replace(/[?*()[\]\\{}]/g, "\\$&");
|
|
@@ -7551,14 +7478,9 @@ import * as path82 from "path";
|
|
|
7551
7478
|
import { cwd as cwd2 } from "process";
|
|
7552
7479
|
|
|
7553
7480
|
// ../../node_modules/.pnpm/@manypkg+get-packages@3.1.0/node_modules/@manypkg/get-packages/dist/manypkg-get-packages.js
|
|
7554
|
-
init_esm_shims();
|
|
7555
7481
|
import path7 from "path";
|
|
7556
7482
|
|
|
7557
|
-
// ../../node_modules/.pnpm/@manypkg+find-root@3.1.0/node_modules/@manypkg/find-root/dist/manypkg-find-root.js
|
|
7558
|
-
init_esm_shims();
|
|
7559
|
-
|
|
7560
7483
|
// ../../node_modules/.pnpm/@manypkg+tools@2.1.0/node_modules/@manypkg/tools/dist/manypkg-tools.js
|
|
7561
|
-
init_esm_shims();
|
|
7562
7484
|
import * as path5 from "path";
|
|
7563
7485
|
import path__default from "path";
|
|
7564
7486
|
import * as fs2 from "fs";
|
|
@@ -7568,13 +7490,11 @@ import fsp__default from "fs/promises";
|
|
|
7568
7490
|
import { F_OK } from "constants";
|
|
7569
7491
|
|
|
7570
7492
|
// ../../node_modules/.pnpm/tinyglobby@0.2.15/node_modules/tinyglobby/dist/index.mjs
|
|
7571
|
-
init_esm_shims();
|
|
7572
7493
|
import nativeFs2 from "fs";
|
|
7573
7494
|
import path4, { posix } from "path";
|
|
7574
7495
|
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
7575
7496
|
|
|
7576
7497
|
// ../../node_modules/.pnpm/fdir@6.5.0_picomatch@4.0.4/node_modules/fdir/dist/index.mjs
|
|
7577
|
-
init_esm_shims();
|
|
7578
7498
|
import { createRequire } from "module";
|
|
7579
7499
|
import { basename, dirname as dirname2, normalize, relative, resolve, sep as sep2 } from "path";
|
|
7580
7500
|
import * as nativeFs from "fs";
|
|
@@ -8360,7 +8280,6 @@ function globSync(patternsOrOptions, options) {
|
|
|
8360
8280
|
}
|
|
8361
8281
|
|
|
8362
8282
|
// ../../node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/dist/js-yaml.mjs
|
|
8363
|
-
init_esm_shims();
|
|
8364
8283
|
function isNothing(subject) {
|
|
8365
8284
|
return typeof subject === "undefined" || subject === null;
|
|
8366
8285
|
}
|
|
@@ -12443,7 +12362,7 @@ async function getLatestTagForPackage(packageName, versionPrefix, options) {
|
|
|
12443
12362
|
);
|
|
12444
12363
|
let allTags = [];
|
|
12445
12364
|
try {
|
|
12446
|
-
const { execSync: execSync2 } = await import("./commandExecutor-E44ID5U4-
|
|
12365
|
+
const { execSync: execSync2 } = await import("./commandExecutor-E44ID5U4-ZQZNV25N.js");
|
|
12447
12366
|
const tagsOutput = execSync2("git", ["tag", "--sort=-creatordate"], { cwd: process.cwd() });
|
|
12448
12367
|
allTags = tagsOutput.toString().trim().split("\n").filter((tag) => tag.length > 0);
|
|
12449
12368
|
} catch (err) {
|
|
@@ -14144,7 +14063,7 @@ function createVersionCommand() {
|
|
|
14144
14063
|
log2("Versioning process completed.", "success");
|
|
14145
14064
|
printJsonOutput();
|
|
14146
14065
|
} catch (error) {
|
|
14147
|
-
const { BaseVersionError: BaseVersionError2 } = await import("./baseError-DQHIJACF-
|
|
14066
|
+
const { BaseVersionError: BaseVersionError2 } = await import("./baseError-DQHIJACF-MKENOKQI.js");
|
|
14148
14067
|
if (BaseVersionError2.isVersionError(error)) {
|
|
14149
14068
|
error.logError();
|
|
14150
14069
|
} else {
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
require_semver
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-PJO2QZSV.js";
|
|
4
4
|
import {
|
|
5
|
-
__toESM
|
|
6
|
-
|
|
7
|
-
} from "./chunk-NOZSTVTV.js";
|
|
8
|
-
|
|
9
|
-
// ../publish/dist/index.js
|
|
10
|
-
init_esm_shims();
|
|
5
|
+
__toESM
|
|
6
|
+
} from "./chunk-QGM4M3NI.js";
|
|
11
7
|
|
|
12
8
|
// ../publish/dist/chunk-OZHNJUFW.js
|
|
13
|
-
init_esm_shims();
|
|
14
9
|
import chalk from "chalk";
|
|
15
10
|
import * as fs2 from "fs";
|
|
16
11
|
var import_semver = __toESM(require_semver(), 1);
|