@kungfu-tech/buildchain 2.12.4-alpha.2 → 2.12.5-alpha.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/bin/buildchain.mjs +3 -0
- package/dist/site/agent-index.json +1 -0
- package/dist/site/artifact-schemas.json +1 -0
- package/dist/site/buildchain-contract.json +2008 -12
- package/dist/site/buildchain-site.json +74 -11
- package/dist/site/capability-registry.json +4 -3
- package/dist/site/controller-registry.json +1626 -0
- package/dist/site/kfd-claims.json +88 -74
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +18 -2
- package/dist/site/node-api-registry.json +20 -7
- package/dist/site/page-registry.json +58 -5
- package/dist/site/public-surface-audit.json +572 -102
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +2 -0
- package/dist/site/site-manifest.json +15 -6
- package/dist/site/workflow-registry.json +534 -68
- package/docs/MAP.md +2 -1
- package/docs/controller-evidence.md +113 -0
- package/docs/release-passport.md +6 -0
- package/package.json +3 -1
- package/packages/core/buildchain-contract.js +62 -1
- package/packages/core/buildchain-kfd-claims.js +3 -0
- package/packages/core/controller-evidence.js +495 -0
- package/packages/core/index.js +17 -0
- package/packages/core/public-surface-audit.js +40 -3
- package/packages/core/release-candidate.js +26 -0
- package/packages/core/release-passport.js +13 -0
- package/scripts/check-inventory.mjs +4 -1
- package/scripts/controller-evidence.mjs +170 -0
- package/scripts/generate-channel-build-workflow.mjs +141 -2
- package/scripts/generate-release-candidate-passport.mjs +4 -0
- package/scripts/generate-site-bundle.mjs +11 -1
package/bin/buildchain.mjs
CHANGED
|
@@ -103,6 +103,7 @@ function usage() {
|
|
|
103
103
|
[--require-lifecycle-stages <comma-list>]
|
|
104
104
|
buildchain lifecycle run <stage> [--cwd <dir>] [--required]
|
|
105
105
|
[--artifact-name <name>] [--artifact-path <path>]...
|
|
106
|
+
[--manifest-path <path>] [--summary-path <path>]
|
|
106
107
|
[--process-summary <json>]
|
|
107
108
|
buildchain npm dry-run [--cwd <dir>] [--expected-tag <tag>] [--registry <url>]
|
|
108
109
|
[--dist-tag <tag>] [--skip-npm-publish-dry-run] [--json]
|
|
@@ -1489,6 +1490,8 @@ async function main(argv = process.argv.slice(2)) {
|
|
|
1489
1490
|
required: readBooleanFlag(lifecycleArgs, "required"),
|
|
1490
1491
|
artifactName: readFlag(lifecycleArgs, "artifact-name", "buildchain-artifact"),
|
|
1491
1492
|
artifactPaths,
|
|
1493
|
+
manifestPath: readFlag(lifecycleArgs, "manifest-path", ".buildchain/artifacts/manifest.json"),
|
|
1494
|
+
summaryPath: readFlag(lifecycleArgs, "summary-path", ".buildchain/artifacts/summary.json"),
|
|
1492
1495
|
expectedArtifactsJson: readFlag(lifecycleArgs, "expected-artifacts-json", ""),
|
|
1493
1496
|
logPath: readFlag(lifecycleArgs, "log-path", process.env.BUILDCHAIN_LOG_PATH || ".buildchain/logs/events.jsonl"),
|
|
1494
1497
|
processSummaryPath: readFlag(lifecycleArgs, "process-summary", ""),
|