@kungfu-tech/buildchain 2.8.16 → 2.8.17
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/README.md +4 -4
- package/dist/site/agent-index.json +2 -1
- package/dist/site/artifact-schemas.json +1 -0
- package/dist/site/badge-endpoint-registry.json +659 -0
- package/dist/site/badges/v1/buildchain-release-passport/aligned.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/declared.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/downgraded.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/draft.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/failed.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/missing.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/passed.json +14 -0
- package/dist/site/badges/v1/buildchain-release-passport/planned.json +14 -0
- package/dist/site/badges/v1/kfd-1/aligned.json +14 -0
- package/dist/site/badges/v1/kfd-1/declared.json +14 -0
- package/dist/site/badges/v1/kfd-1/downgraded.json +14 -0
- package/dist/site/badges/v1/kfd-1/draft.json +14 -0
- package/dist/site/badges/v1/kfd-1/failed.json +14 -0
- package/dist/site/badges/v1/kfd-1/missing.json +14 -0
- package/dist/site/badges/v1/kfd-1/passed.json +14 -0
- package/dist/site/badges/v1/kfd-1/planned.json +14 -0
- package/dist/site/badges/v1/kfd-2/aligned.json +14 -0
- package/dist/site/badges/v1/kfd-2/declared.json +14 -0
- package/dist/site/badges/v1/kfd-2/downgraded.json +14 -0
- package/dist/site/badges/v1/kfd-2/draft.json +14 -0
- package/dist/site/badges/v1/kfd-2/failed.json +14 -0
- package/dist/site/badges/v1/kfd-2/missing.json +14 -0
- package/dist/site/badges/v1/kfd-2/passed.json +14 -0
- package/dist/site/badges/v1/kfd-2/planned.json +14 -0
- package/dist/site/badges/v1/kfd-3/aligned.json +14 -0
- package/dist/site/badges/v1/kfd-3/declared.json +14 -0
- package/dist/site/badges/v1/kfd-3/downgraded.json +14 -0
- package/dist/site/badges/v1/kfd-3/draft.json +14 -0
- package/dist/site/badges/v1/kfd-3/failed.json +14 -0
- package/dist/site/badges/v1/kfd-3/missing.json +14 -0
- package/dist/site/badges/v1/kfd-3/passed.json +14 -0
- package/dist/site/badges/v1/kfd-3/planned.json +14 -0
- package/dist/site/buildchain-contract.json +6 -6
- package/dist/site/buildchain-site.json +25 -19
- package/dist/site/manual-registry.json +4 -4
- package/dist/site/node-api-registry.json +5 -5
- package/dist/site/page-registry.json +15 -10
- package/dist/site/site-manifest.json +9 -8
- package/docs/MAP.md +3 -0
- package/docs/readme-badges.md +48 -7
- package/docs/reusable-build-surface.md +49 -0
- package/docs/web-surface-deployments.md +7 -5
- package/package.json +1 -1
- package/packages/core/diagnostics.js +16 -0
- package/packages/core/index.js +3 -0
- package/packages/core/readme-badges.js +235 -15
- package/scripts/check-inventory.mjs +22 -1
- package/scripts/generate-site-bundle.mjs +17 -0
- package/scripts/locked-source-checkout.mjs +386 -0
- package/scripts/run-lifecycle-core.mjs +12 -0
- package/scripts/web-surface-core.mjs +1 -8
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Buildchain
|
|
2
2
|
|
|
3
3
|
<!-- buildchain:badges:start -->
|
|
4
|
-
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
5
|
+
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
6
|
+
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
7
|
+
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
8
8
|
[](https://github.com/kungfu-systems/buildchain/blob/HEAD/LICENSE)
|
|
9
9
|
[](https://github.com/kungfu-systems/buildchain/releases/latest/download/buildchain.release.json)
|
|
10
10
|
[](https://github.com/kungfu-systems/buildchain/actions/workflows/verify.yml)
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"workflow-registry.json",
|
|
13
13
|
"artifact-schemas.json",
|
|
14
14
|
"buildchain-contract.json",
|
|
15
|
-
"kfd-claims.json"
|
|
15
|
+
"kfd-claims.json",
|
|
16
|
+
"badge-endpoint-registry.json"
|
|
16
17
|
],
|
|
17
18
|
"instruction": "Use this bundle as the package-owned fact source for Buildchain pages. Do not infer current release mechanics from prose alone."
|
|
18
19
|
}
|