blob: 84b91f6629444e434763638826b0a3467c9028ab (
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
|
(executable
(name script)
(libraries
brr
brr.note
shapes
elements
blog
layer
)
(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
)
(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})))
|