forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-schema.json
534 lines (533 loc) · 16.3 KB
/
build-schema.json
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"module-format": {
"enum": ["commonjs", "es6", "es6-global"],
"description": "es6-global generate relative `require` paths instead of relying on NodeJS' module resolution. Default: commonjs."
},
"suffix-spec": {
"enum": [".js", ".mjs", ".cjs", ".bs.js", ".bs.mjs", ".bs.cjs"],
"description": "suffix of generated js files, default to [.js] "
},
"module-format-object": {
"type": "object",
"properties": {
"module": {
"$ref": "#/definitions/module-format"
},
"in-source": {
"type": "boolean",
"description": "Default: false."
},
"suffix": {
"$ref": "#/definitions/suffix-spec"
}
},
"required": ["module"]
},
"package-spec": {
"oneOf": [
{
"$ref": "#/definitions/module-format"
},
{
"$ref": "#/definitions/module-format-object"
}
]
},
"namespace-spec": {
"oneOf": [
{
"type": "boolean",
"description": "true to use the package name as namespace, false to not use"
},
{
"type": "string",
"description": "provide customized namespace name"
}
]
},
"package-specs": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/package-spec"
}
},
{
"$ref": "#/definitions/package-spec"
}
]
},
"reanalyze": {
"type": "object",
"properties": {
"analysis": {
"type": "array",
"items": {
"enum": ["dce", "exception", "termination"]
},
"description": "The types of analysis to activate. `dce` means dead code analysis, `exception` means exception analysis, and `termination` is to check for infinite loops."
},
"suppress": {
"type": "array",
"items": {
"type": "string"
},
"description": "Paths for any folders you'd like to exclude from analysis. Useful for bindings and similar. Example: `[\"src/bindings\"]`."
},
"unsuppress": {
"type": "array",
"items": {
"type": "string"
},
"description": "Any specific paths inside suppressed folders that you want to unsuppress. Example: [\"src/bindings/SomeBinding.res\"]."
}
}
},
"react-jsx-version": {
"title": "jsx-version",
"type": "number",
"description": "backward compatible mode, true means on with the default to be version 1 (the default value is subject to change)"
},
"ppx-specs": {
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"pp-specs": {
"type": "string"
},
"bs-dependency": {
"type": "string",
"title": "dependency"
},
"dependencies": {
"type": "array",
"items": {
"$ref": "#/definitions/bs-dependency"
}
},
"js-post-build": {
"type": "object",
"properties": {
"cmd": {
"type": "string"
}
}
},
"rule-generator": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"command": {
"type": "string"
}
},
"description": "The shell command is running in *dev* time, and you generated could should be checked in, the depedency is tracked properly during dev time,example: `{ \"name\" : \"ocamllex\", \"command\" : \"ocamllex.opt $in -o $out\"}`"
},
"build-generator": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"edge": {
"type": "array",
"items": {
"type": "string"
}
}
},
"description": "Note that we will add the directory path accordingly"
},
"sourceItem": {
"title": "sourceItem",
"oneOf": [
{
"type": "object",
"properties": {
"dir": {
"type": "string",
"description": "name of the directory"
},
"type": {
"enum": ["dev"]
},
"files": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"description": "if files are empty, the build system will populate it automatically. Useful for initial build"
},
{
"type": "object",
"properties": {
"slow-re": {
"type": "string",
"description": "Regex to glob the patterns, syntax is documented [here](http://caml.inria.fr/pub/docs/manual-ocaml/libref/Str.html), for better incremental build performance, we'd suggest listing files explicitly"
},
"excludes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Files to be excluded"
}
}
}
]
},
"generators": {
"type": "array",
"items": {
"$ref": "#/definitions/build-generator"
},
"description": "(WIP) Files generated in dev time"
},
"public": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"description": "Selected modules, for example, [Module_a, Module_b] "
},
{
"enum": ["all"]
}
],
"description": "Default: export all modules. It is recommended for library developers to hide some files/interfaces"
},
"resources": {
"type": "array",
"items": {
"type": "string"
}
},
"subdirs": {
"title": "Sub directories",
"oneOf": [
{
"$ref": "#/definitions/sources",
"description": "More source directories"
},
{
"type": "boolean",
"description": "true means traverse to all subdirs"
}
]
},
"group": {
"oneOf": [
{
"type": "string",
"description": "A _unique_ name for each directory to refer as an internal dependency later"
},
{
"type": "object",
"properties": {
"name": {
"type": "string"
},
"hierachy": {
"type": "boolean",
"description": "When true, all subdirs are considered as a whole as dependency"
}
}
}
],
"description": "Not implemented yet"
},
"internal-depends": {
"type": "array",
"items": {
"type": "string",
"description": "internal dependencies, if unspecified, all existing listed source files are considered potential dependencies"
}
}
},
"required": ["dir"]
},
{
"title": "Single non-nested directory",
"type": "string"
}
]
},
"sources": {
"oneOf": [
{
"type": "array",
"items": {
"$ref": "#/definitions/sourceItem"
},
"description": "A list of source items"
},
{
"$ref": "#/definitions/sourceItem",
"description": "A single source item"
}
],
"description": "Example: `\"src\"` or `[\"src\", \"test\"]` or `[{\"dir\": \"src\", \"subdirs\": [...]}]`"
},
"targetItems": {
"type": "object",
"properties": {
"kind": {
"enum": ["native", "bytecode", "js"],
"description": "The compiler to use for the target"
},
"main": {
"type": "string",
"description": "Name of the main module used as entry point for this target. 'entry-point' isn't used when this project is built as a dependency."
}
}
},
"entries": {
"type": "array",
"items": {
"$ref": "#/definitions/targetItems"
},
"description": "A list of buildable targets"
},
"gentype-specs": {
"type": "object",
"properties": {
"path": {
"type": "string"
}
},
"description": "path to gentype, path resolution is similar to ReScript"
},
"reason-specs": {
"type": "object",
"properties": {
"react-jsx": {
"$ref": "#/definitions/react-jsx-version",
"description": "Whether to apply the [RescriptReact](https://github.com/rescript-lang/rescript-react)-specific JSX PPX transformation."
}
}
},
"jsx-specs": {
"type": "object",
"properties": {
"version": {
"type": "number",
"enum": [3, 4],
"description": "Whether to apply the specific version of JSX PPX transformation"
},
"module": {
"type": "string",
"enum": ["react"],
"description": "JSX module, currently only support the React."
},
"mode": {
"type": "string",
"enum": ["classic", "automatic"],
"description": "JSX transformation mode"
},
"v3-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "Build the given dependencies in JSX V3 compatibility mode."
}
},
"additionalProperties": false,
"required": ["version"]
},
"refmt-specs": {
"oneOf": [
{
"type": "number",
"enum": [2, 3],
"description": "Reason syntax version to use. Prefer 3. Default: 2, for backward-compatiblity"
},
{
"type": "string",
"description": "(Usually not needed) Alternative path to `refmt`, the Reason syntax binary. Default: path to the `refmt.exe` ReScript provides out of the box"
}
]
},
"bsc-flags": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
},
"description": "Default: `[\"-no-alias-deps\"]`"
},
{
"type": "object",
"properties": {
"kind": {
"enum": ["reset", "prefix", "append"]
},
"flags": {
"type": "array",
"items": {
"type": "string"
}
}
},
"description": "(Not implemented yet)"
}
]
}
},
"title": "ReScript build configuration",
"description": "All paths are required to be in **Unix format** (foo/bar), the build system normalizes them for other platforms internally",
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "The semantic version of the ReScript library"
},
"name": {
"type": "string",
"description": "Package name"
},
"namespace": {
"$ref": "#/definitions/namespace-spec",
"description": "can be true/false or a customized name"
},
"sources": {
"$ref": "#/definitions/sources",
"description": "Source code location"
},
"ignored-dirs": {
"type": "array",
"items": {
"type": "string"
},
"description": "a list of directories that bsb will not look into"
},
"bs-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dependencies of the library, like in package.json. Currently searches in `node_modules`"
},
"bs-dev-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "ReScript dev dependencies of the library, like in package.json. Currently searches in `node_modules`"
},
"pinned-dependencies": {
"$ref": "#/definitions/dependencies",
"description": "Those dependencies are pinned (since version 8.4)"
},
"generators": {
"type": "array",
"items": {
"$ref": "#/definitions/rule-generator"
},
"description": "(WIP) Pre defined rules"
},
"cut-generators": {
"type": "boolean",
"description": "Ignore generators, cut the dependency on generator tools"
},
"jsx": {
"$ref": "#/definitions/jsx-specs",
"description": "Configuration for the JSX transformation."
},
"reason": {
"$ref": "#/definitions/reason-specs",
"description": "ReScript comes with [Reason](http://reasonml.github.io/) by default. Specific configurations here."
},
"gentypeconfig": {
"$ref": "#/definitions/gentype-specs",
"description": "gentype config, see cristianoc/genType for more details"
},
"bsc-flags": {
"$ref": "#/definitions/bsc-flags",
"description": "Flags passed to bsc.exe"
},
"warnings": {
"type": "object",
"properties": {
"number": {
"type": "string",
"description": "Default: -40+6+7+27+32..39+44+45 [Here](https://caml.inria.fr/pub/docs/manual-ocaml/comp.html#sec270) for the meanings of the warning flags"
},
"error": {
"oneOf": [
{
"type": "boolean",
"description": "True means warn is error(default)"
},
{
"type": "string",
"description": "Same as warning number but different set"
}
]
}
},
"description": "warning numbers and whether to turn it into error or not"
},
"ppx-flags": {
"$ref": "#/definitions/ppx-specs",
"description": "PPX macros to pass to compiler. The syntax is package_name/binary, for example: `reason/reactjs_jsx_ppx_3.native`. Currenly searches in `node_modules`"
},
"pp-flags": {
"$ref": "#/definitions/pp-specs",
"description": "preprocessors to pass to compiler. The syntax is package_name/binary, for example: `pp/syntax.exe`. Currenly searches in `node_modules`"
},
"js-post-build": {
"$ref": "#/definitions/js-post-build",
"description": "(Experimental) post-processing hook. bsb will invoke `cmd ${file}` whenever a `${file}` is changed"
},
"package-specs": {
"$ref": "#/definitions/package-specs",
"description": "ReScript can currently output to [Commonjs](https://en.wikipedia.org/wiki/CommonJS), and [ES6 modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)"
},
"entries": {
"$ref": "#/definitions/entries",
"description": "(internal) Used by bsb to build to different targets: native (ocamlopt), bytecode (ocamlc) or JS (bsc)"
},
"generate-merlin": {
"type": "boolean",
"description": "Whether to generate the `.merlin` file for [Merlin](https://github.com/ocaml/merlin). Default: true"
},
"use-stdlib": {
"type": "boolean",
"description": "(Experimental) whether to use the OCaml standard library. Default: true"
},
"external-stdlib": {
"type": "string",
"description": "Use the external stdlib library instead of the one shipped with the compiler package"
},
"bs-external-includes": {
"type": "array",
"items": {
"type": "string"
},
"description": "(Not needed usually) external include directories, which will be applied `-I` to all compilation units"
},
"suffix": {
"$ref": "#/definitions/suffix-spec"
},
"reanalyze": {
"$ref": "#/definitions/reanalyze",
"description": "Configure reanalyze, a static code analysis tool for ReScript."
}
},
"additionalProperties": false,
"required": ["name", "sources"]
}