@iodes/releasekit 0.1.1 → 0.1.3
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 +74 -26
- package/dist/cli.js +7 -2
- package/dist/git.d.ts +18 -6
- package/dist/git.js +16 -7
- package/dist/install.js +3 -3
- package/dist/model.d.ts +37 -19
- package/dist/model.js +9 -8
- package/dist/project.d.ts +7 -2
- package/dist/project.js +62 -16
- package/dist/schema-export.js +9 -2
- package/dist/validate.js +16 -12
- package/kit/references/adoption.md +57 -0
- package/kit/references/format.md +10 -3
- package/kit/references/workflow.md +114 -9
- package/kit/references/writing.md +4 -0
- package/kit/skills/releasekit-draft/SKILL.md +9 -3
- package/kit/skills/releasekit-finalize/SKILL.md +20 -0
- package/kit/skills/releasekit-image/SKILL.md +6 -0
- package/package.json +1 -1
- package/schemas/config.schema.json +87 -0
- package/schemas/release.schema.json +7 -0
- package/kit/skills/releasekit-review/SKILL.md +0 -12
- package/kit/skills/releasekit-translate/SKILL.md +0 -10
- package/schemas/evidence.schema.json +0 -96
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"type": "object",
|
|
4
|
-
"properties": {
|
|
5
|
-
"schemaVersion": {
|
|
6
|
-
"type": "number",
|
|
7
|
-
"const": 1
|
|
8
|
-
},
|
|
9
|
-
"source": {
|
|
10
|
-
"type": "object",
|
|
11
|
-
"properties": {
|
|
12
|
-
"fromRef": {
|
|
13
|
-
"type": [
|
|
14
|
-
"string",
|
|
15
|
-
"null"
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"fromSha": {
|
|
19
|
-
"anyOf": [
|
|
20
|
-
{
|
|
21
|
-
"type": "string",
|
|
22
|
-
"pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"type": "null"
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"toRef": {
|
|
30
|
-
"type": "string"
|
|
31
|
-
},
|
|
32
|
-
"toSha": {
|
|
33
|
-
"type": "string",
|
|
34
|
-
"pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
"required": [
|
|
38
|
-
"fromRef",
|
|
39
|
-
"fromSha",
|
|
40
|
-
"toRef",
|
|
41
|
-
"toSha"
|
|
42
|
-
],
|
|
43
|
-
"additionalProperties": false
|
|
44
|
-
},
|
|
45
|
-
"commits": {
|
|
46
|
-
"type": "array",
|
|
47
|
-
"items": {
|
|
48
|
-
"type": "object",
|
|
49
|
-
"properties": {
|
|
50
|
-
"sha": {
|
|
51
|
-
"type": "string",
|
|
52
|
-
"pattern": "^(?:[a-f0-9]{40}|[a-f0-9]{64})$"
|
|
53
|
-
},
|
|
54
|
-
"subject": {
|
|
55
|
-
"type": "string"
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"required": [
|
|
59
|
-
"sha",
|
|
60
|
-
"subject"
|
|
61
|
-
],
|
|
62
|
-
"additionalProperties": false
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"files": {
|
|
66
|
-
"type": "array",
|
|
67
|
-
"items": {
|
|
68
|
-
"type": "object",
|
|
69
|
-
"properties": {
|
|
70
|
-
"status": {
|
|
71
|
-
"type": "string"
|
|
72
|
-
},
|
|
73
|
-
"path": {
|
|
74
|
-
"type": "string"
|
|
75
|
-
},
|
|
76
|
-
"oldPath": {
|
|
77
|
-
"type": "string"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"required": [
|
|
81
|
-
"status",
|
|
82
|
-
"path"
|
|
83
|
-
],
|
|
84
|
-
"additionalProperties": false
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"required": [
|
|
89
|
-
"schemaVersion",
|
|
90
|
-
"source",
|
|
91
|
-
"commits",
|
|
92
|
-
"files"
|
|
93
|
-
],
|
|
94
|
-
"additionalProperties": false,
|
|
95
|
-
"$id": "urn:releasekit:evidence:1"
|
|
96
|
-
}
|