alpha
Login
or
Join now
anil.recoil.org
/
ocaml-jmap
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
disable jsoo builds for now
author
Anil Madhavapeddy
date
4 months ago
(Jan 29, 2026, 9:35 AM UTC)
commit
af0ee831
af0ee831f48547f6d021eaff98cf74c02ed5de7e
parent
5779ecb4
5779ecb4b45f11a7d6f273aa63d02109e02e9b99
+28
-20
2 changed files
Expand all
Collapse all
Unified
Split
lib
js
dune
web
dune
+11
-7
lib/js/dune
Reviewed
···
1
1
-
(include_subdirs no)
1
1
+
; JMAP Browser Bindings Library
2
2
+
;
3
3
+
; Build rules temporarily disabled - code kept in place
2
4
3
3
-
(library
4
4
-
(name jmap_brr)
5
5
-
(public_name jmap.brr)
6
6
-
(optional)
7
7
-
(libraries jmap brr jsont.brr)
8
8
-
(modes byte))
5
5
+
; (include_subdirs no)
6
6
+
7
7
+
; (library
8
8
+
; (name jmap_brr)
9
9
+
; (public_name jmap.brr)
10
10
+
; (optional)
11
11
+
; (libraries jmap brr jsont.brr)
12
12
+
; (modes byte))
+17
-13
web/dune
Reviewed
···
1
1
-
(executable
2
2
-
(name brr_app)
3
3
-
(libraries jmap_brr brr)
4
4
-
(modes js)
5
5
-
(flags (:standard -w -32-69))
6
6
-
(js_of_ocaml))
1
1
+
; JMAP Browser Demo Application
2
2
+
;
3
3
+
; Build rules temporarily disabled - code kept in place
7
4
8
8
-
(rule
9
9
-
(targets brr.js)
10
10
-
(deps brr_app.bc.js)
11
11
-
(action (copy %{deps} %{targets})))
5
5
+
; (executable
6
6
+
; (name brr_app)
7
7
+
; (libraries jmap_brr brr)
8
8
+
; (modes js)
9
9
+
; (flags (:standard -w -32-69))
10
10
+
; (js_of_ocaml))
12
11
13
13
-
(alias
14
14
-
(name web)
15
15
-
(deps brr.js brr.html))
12
12
+
; (rule
13
13
+
; (targets brr.js)
14
14
+
; (deps brr_app.bc.js)
15
15
+
; (action (copy %{deps} %{targets})))
16
16
+
17
17
+
; (alias
18
18
+
; (name web)
19
19
+
; (deps brr.js brr.html))