blob: 3b0ab0811741b8f36435066f76547a12924356bf (
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
40
41
|
(lang dune 3.19)
(name bs5)
(generate_opam_files true)
(source
(github username/reponame))
(authors "Author Name")
(maintainers "Maintainer Name")
(license LICENSE)
(documentation https://url/to/documentation)
(package
(name bs5)
(synopsis "A short synopsis")
(description "A longer description")
(depends
ocaml
dune
ocaml-lsp-server
(ocamlmerlin-mlx :with-dev-setup)
(ocamlformat-mlx :with-dev-setup))
(tags
(topics "to describe" your project)))
(dialect
(name mlx)
(implementation
(extension mlx)
(merlin_reader mlx)
(format
(run ocamlformat-mlx %{input-file}))
(preprocess
(run mlx-pp %{input-file}))))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|