@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
|
@@ -3,13 +3,8 @@ import {
|
|
|
3
3
|
detectMonorepo,
|
|
4
4
|
splitByPackage,
|
|
5
5
|
writeMonorepoChangelogs
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import
|
|
8
|
-
init_esm_shims
|
|
9
|
-
} from "./chunk-NOZSTVTV.js";
|
|
10
|
-
|
|
11
|
-
// ../notes/dist/aggregator-IUQUAVJC.js
|
|
12
|
-
init_esm_shims();
|
|
6
|
+
} from "./chunk-X6K5NWRA.js";
|
|
7
|
+
import "./chunk-QGM4M3NI.js";
|
|
13
8
|
export {
|
|
14
9
|
aggregateToRoot,
|
|
15
10
|
detectMonorepo,
|
|
@@ -2,13 +2,9 @@ import {
|
|
|
2
2
|
EXIT_CODES,
|
|
3
3
|
runPreview,
|
|
4
4
|
runRelease
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import {
|
|
7
|
-
init_esm_shims
|
|
8
|
-
} from "./chunk-NOZSTVTV.js";
|
|
5
|
+
} from "./chunk-LTPOKPAP.js";
|
|
9
6
|
|
|
10
7
|
// src/preview-command.ts
|
|
11
|
-
init_esm_shims();
|
|
12
8
|
import { Command } from "commander";
|
|
13
9
|
function createPreviewCommand() {
|
|
14
10
|
return new Command("preview").description("Post a release preview comment on the current pull request").option("-c, --config <path>", "Path to config file").option("--project-dir <path>", "Project directory", process.cwd()).option("--pr <number>", "PR number (auto-detected from GitHub Actions)").option("--repo <owner/repo>", "Repository (auto-detected from GITHUB_REPOSITORY)").option("-p, --prerelease [identifier]", "Force prerelease preview (auto-detected by default)").option("--stable", "Force stable release preview (graduation from prerelease)", false).option(
|
|
@@ -34,7 +30,6 @@ function createPreviewCommand() {
|
|
|
34
30
|
}
|
|
35
31
|
|
|
36
32
|
// src/release-command.ts
|
|
37
|
-
init_esm_shims();
|
|
38
33
|
import { Command as Command2, Option } from "commander";
|
|
39
34
|
function createReleaseCommand() {
|
|
40
35
|
return new Command2("release").description("Run the full release pipeline").option("-c, --config <path>", "Path to config file").option("-d, --dry-run", "Preview all steps without side effects", false).option("-b, --bump <type>", "Force bump type (patch|minor|major)").option("-p, --prerelease [identifier]", "Create prerelease version").option("-s, --sync", "Use synchronized versioning across all packages", false).option("-t, --target <packages>", "Target specific packages (comma-separated)").option("--branch <name>", "Override the git branch used for push").addOption(new Option("--npm-auth <method>", "NPM auth method").choices(["auto", "oidc", "token"]).default("auto")).option("--skip-notes", "Skip changelog generation", false).option("--skip-publish", "Skip registry publishing and git operations", false).option("--skip-git", "Skip git commit/tag/push", false).option("--skip-github-release", "Skip GitHub release creation", false).option("--skip-verification", "Skip post-publish verification", false).option("-j, --json", "Output results as JSON", false).option("-v, --verbose", "Verbose logging", false).option("-q, --quiet", "Suppress non-error output", false).option("--project-dir <path>", "Project directory", process.cwd()).action(async (opts) => {
|