blob: f6cc084c0efe6b005bfeffbbaa2081e9556b64ad (
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)
(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")))
|