forked from Lilly-Protocol/lily-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
249 lines (249 loc) · 6.26 KB
/
Copy pathschema.json
File metadata and controls
249 lines (249 loc) · 6.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"baseBranch": {
"type": "string",
"description": "Determines the branch that Changesets uses when finding what packages have changed.",
"default": "main"
},
"access": {
"anyOf": [
{
"const": "public"
},
{
"const": "restricted"
}
],
"description": "Determines whether Changesets should publish packages to the registry publicly or to a restricted scope.",
"default": "restricted"
},
"changedFilePatterns": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of file patterns that Changesets should consider when determining what packages have changed.",
"default": ["**"]
},
"format": {
"anyOf": [
{
"const": "auto"
},
{
"const": "prettier"
},
{
"const": "oxfmt"
},
{
"const": "deno"
},
{
"const": "dprint"
},
{
"const": false
}
],
"description": "The formatter to use to format changesets and changelogs. Set `false` to disable formatting. The default value of `auto` will auto-detect the formatter based on the project's configuration files.",
"default": "auto"
},
"ignore": {
"type": "array",
"items": {
"type": "string"
},
"description": "Packages that should not be released.",
"default": []
},
"fixed": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
},
"examples": [
[
["@pkg/a", "@pkg/b"],
["@pkg/d", "@pkg/e"]
]
],
"description": "Packages that should always be released together with the same version.",
"default": []
},
"linked": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
},
"examples": [
[
["@pkg/a", "@pkg/b"],
["@pkg/d", "@pkg/e"]
]
],
"description": "Packages that should be linked together so when they are being released, they will be released at the same version.",
"default": []
},
"updateInternalDependencies": {
"anyOf": [
{
"const": "minor"
},
{
"const": "patch"
}
],
"description": "The minimum bump type to trigger automatic update of internal dependencies that are part of the same release.",
"default": "patch"
},
"privatePackages": {
"anyOf": [
{
"type": "object",
"properties": {
"version": {
"type": "boolean",
"default": false
},
"tag": {
"type": "boolean",
"default": false
}
},
"required": []
},
{
"type": "boolean"
}
],
"description": "Opt in to tracking non-npm / private packages",
"default": {}
},
"bumpVersionsWithWorkspaceProtocolOnly": {
"type": "boolean",
"description": "Determines whether Changesets should only bump dependency ranges that use workspace protocol of packages that are part of the workspace.",
"default": false
},
"snapshot": {
"type": "object",
"properties": {
"useCalculatedVersion": {
"type": "boolean",
"description": "Makes generated snapshot versions use the calculated version (based on the changeset files) as a base version, instead of 0.0.0",
"default": false
},
"prereleaseTemplate": {
"type": "string",
"minLength": 1,
"description": "A template for the prerelease (suffix) part of the generated snapshot version. The template can use the following variable patterns: {commit}, {tag}, {datetime}, {timestamp}."
}
},
"required": [],
"description": "Snapshot-specific options.",
"default": {}
},
"changelog": {
"anyOf": [
{
"const": false
},
{
"type": "string"
},
{
"type": "array",
"prefixItems": [
{
"type": "string"
},
{
"anyOf": [
{
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
{
"type": "null"
}
]
}
],
"minItems": 2
}
],
"description": "The configuration for changelog generators.",
"default": "@changesets/cli/changelog"
},
"commit": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "string"
},
{
"type": "array",
"prefixItems": [
{
"type": "string"
},
{
"anyOf": [
{
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
{
"type": "null"
}
]
}
],
"minItems": 2
}
],
"description": "Determines whether Changesets should commit the results of the add and version command.",
"default": false
},
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"type": "object",
"properties": {
"onlyUpdatePeerDependentsWhenOutOfRange": {
"type": "boolean",
"default": false
},
"updateInternalDependents": {
"anyOf": [
{
"const": "always"
},
{
"const": "out-of-range"
}
],
"default": "out-of-range"
}
},
"required": [],
"description": "Unsafe options",
"default": {}
}
},
"required": []
}