blob: 00dfecca2713576a6298166548e6811db6bc1ab1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
(test
(name websockets_hello)
(libraries portal_ws lwt js_of_ocaml flesh hello)
(modes js)
(preprocess (pps js_of_ocaml-ppx))
(deps node_modules)
(js_of_ocaml
(javascript_files polyfill.js)))
(rule
(alias npm)
(target node_modules)
(deps package.json package-lock.json)
(action (system "npm ci")))
|