forked from facebook/flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune
More file actions
35 lines (33 loc) · 636 Bytes
/
dune
File metadata and controls
35 lines (33 loc) · 636 Bytes
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
(env
(opt
(js_of_ocaml
(compilation_mode whole_program)
(flags :standard --opt 3))))
(executable
(name flow)
(public_name flow)
(package flowtype)
(modes native byte_complete)
(modules flow)
(libraries
flow_glean
flow_commands
flow_exit_status
flow_extra_commands
flow_logging_utils
flow_parser
lz4 ; see dune-workspace
))
(executable
(name flow_dot_js)
(modes js)
(modules flow_dot_js)
(libraries
flow_file_sig
flow_parser_js
flow_parser_utils_aloc
flow_parsing_docblock
flow_typing
flow_typing_errors
js_of_ocaml)
(js_of_ocaml (javascript_files ./js/unix.js)))