@kungfu-tech/kfd 1.0.0-alpha.4 → 1.0.0-alpha.5
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/.buildchain/kfd-1/contract-world.witness.json +8 -8
- package/.buildchain/kfd-3/collaboration-interface.artifact.json +443 -0
- package/.buildchain/kfd-3/collaboration-interface.json +260 -0
- package/.buildchain/kfd-3/collaboration-interface.prebuild.json +717 -0
- package/buildchain.release-propagation.json +9 -2
- package/kfd.release.json +13 -0
- package/package.json +9 -2
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"id": "site-libkungfu-dev",
|
|
12
12
|
"repository": "kungfu-systems/site-libkungfu-dev",
|
|
13
13
|
"lockPath": "buildchain.upstreams/kfd.release.json",
|
|
14
|
-
"baseRef": "
|
|
14
|
+
"baseRef": "main"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"edges": [
|
|
@@ -19,7 +19,14 @@
|
|
|
19
19
|
"id": "kfd-to-site-libkungfu-dev",
|
|
20
20
|
"from": "kfd",
|
|
21
21
|
"to": "site-libkungfu-dev",
|
|
22
|
-
"channelPolicy": "preserve"
|
|
22
|
+
"channelPolicy": "preserve",
|
|
23
|
+
"consumes": [
|
|
24
|
+
"@kungfu-tech/kfd",
|
|
25
|
+
"site/kfd-site.json",
|
|
26
|
+
"registry.json",
|
|
27
|
+
"standards.json",
|
|
28
|
+
"decisions/*.md"
|
|
29
|
+
]
|
|
23
30
|
}
|
|
24
31
|
]
|
|
25
32
|
}
|
package/kfd.release.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"contract": "kfd-release-anchor",
|
|
4
|
+
"line": "v1.0",
|
|
5
|
+
"channel": "alpha",
|
|
6
|
+
"npmPackage": "@kungfu-tech/kfd",
|
|
7
|
+
"npmVersion": "1.0.0-alpha.5",
|
|
8
|
+
"source": {
|
|
9
|
+
"repository": "kungfu-systems/kfd",
|
|
10
|
+
"branch": "alpha/v1/v1.0"
|
|
11
|
+
},
|
|
12
|
+
"rationale": "KFD uses an anchored/manual Buildchain mode: the public package version is an explicit release fact, while the outer KFD line remains v1.0."
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kungfu-tech/kfd",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.5",
|
|
4
4
|
"description": "Kung Fu Decisions (KFD): the kungfu-systems organization-wide decision registry, as a consumable artifact",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"files": [
|
|
@@ -8,10 +8,12 @@
|
|
|
8
8
|
"decisions",
|
|
9
9
|
"registry.json",
|
|
10
10
|
"standards.json",
|
|
11
|
+
"kfd.release.json",
|
|
11
12
|
"schemas",
|
|
12
13
|
"site",
|
|
13
14
|
"buildchain.release-propagation.json",
|
|
14
15
|
".buildchain/kfd-1/contract-world.witness.json",
|
|
16
|
+
".buildchain/kfd-3",
|
|
15
17
|
"docs"
|
|
16
18
|
],
|
|
17
19
|
"exports": {
|
|
@@ -19,16 +21,21 @@
|
|
|
19
21
|
"./README.md": "./README.md",
|
|
20
22
|
"./registry.json": "./registry.json",
|
|
21
23
|
"./standards.json": "./standards.json",
|
|
24
|
+
"./kfd.release.json": "./kfd.release.json",
|
|
22
25
|
"./site/kfd-site.json": "./site/kfd-site.json",
|
|
23
26
|
"./buildchain.release-propagation.json": "./buildchain.release-propagation.json",
|
|
24
27
|
"./buildchain/kfd-1/contract-world.witness.json": "./.buildchain/kfd-1/contract-world.witness.json",
|
|
28
|
+
"./buildchain/kfd-3/collaboration-interface.json": "./.buildchain/kfd-3/collaboration-interface.json",
|
|
29
|
+
"./buildchain/kfd-3/collaboration-interface.prebuild.json": "./.buildchain/kfd-3/collaboration-interface.prebuild.json",
|
|
30
|
+
"./buildchain/kfd-3/collaboration-interface.artifact.json": "./.buildchain/kfd-3/collaboration-interface.artifact.json",
|
|
25
31
|
"./schemas/*.json": "./schemas/*.json",
|
|
26
32
|
"./schemas/*/*.json": "./schemas/*/*.json",
|
|
27
33
|
"./decisions/*.md": "./decisions/*.md",
|
|
28
34
|
"./docs/*": "./docs/*"
|
|
29
35
|
},
|
|
30
36
|
"scripts": {
|
|
31
|
-
"check": "node scripts/check.mjs"
|
|
37
|
+
"check": "node scripts/check.mjs",
|
|
38
|
+
"update:kfd-3-witness": "node scripts/update-kfd-3-witness.mjs"
|
|
32
39
|
},
|
|
33
40
|
"publishConfig": {
|
|
34
41
|
"registry": "https://registry.npmjs.org/",
|