Skip to content

Commit

Permalink
[doc] [js] More docs on our JS setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejgallego committed Sep 28, 2024
1 parent a304994 commit 9fa6a0f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions controller-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,23 @@ information.
The worker needs two parts to work:

- the worker binary
- the worker filesystem
- the worker OCaml filesystem (`controller-js/coq-fs-core.js`)
- the worker Coq filesystem (`controller-js/coq-fs.js`)

which are then bundled in a single `.js` file.

Type
The worker OCaml filesystem includes:
- `META` files for anything used by Coq
- transpiled `.cma` to `.js` files for plugins that will be loaded by Coq

Type:

```
make controller-js/coq-fs-core.js && make js
make patch-for-js # (only once, patch Coq for JS build)
make controller-js/coq-fs-core.js # build the OCaml filesystem, needed when plugins change
make js # build the worker and link with the FS.
```
to build the worker filesystem and the worker, which will be placed under `editor/code/out`.
to get a working build in `editor/code/out`.

As of now the build is very artisanal and not flexible at all, we hope to improve it soon.

Expand Down Expand Up @@ -75,4 +82,3 @@ We need to have most `META` files in findlib, plus the Coq and
- `/static/coqlib`: Coq root, with regular paths
+ `/static/coqlib/theories`
+ `/static/coqlib/user-contrib`

0 comments on commit 9fa6a0f

Please sign in to comment.