blob: c51c43bde1bdfaa225991abf43022aa2922db6c8 (
plain)
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
|
(executable
(name script)
(libraries
brr
brr.note
shapes
elements
blog
layer
worker_messages
)
(modes js)
(modules script state selection)
(preprocess (pps ppx_hash js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
)
(rule
(targets script.js)
(deps script.bc.js)
(action (run cp %{deps} %{targets})))
(executable
(name worker)
(modules worker)
(libraries
js_of_ocaml
shapes
path
worker_messages
)
(modes js)
(preprocess (pps ppx_hash js_of_ocaml-ppx))
(link_flags (:standard -no-check-prims))
)
(rule
(targets worker.js)
(deps worker.bc.js)
(action (run cp %{deps} %{targets})))
|