File tree 3 files changed +29
-40
lines changed
3 files changed +29
-40
lines changed Original file line number Diff line number Diff line change 16
16
17
17
( package
18
18
(name rescript)
19
- (synopsis " ReScript compiler" )
20
- ( depends
21
- ( ocaml
22
- ( >= 4 .14) )
23
- ( ocamlformat
24
- ( and
25
- :with -test
26
- ( = 0 .27.0) ) )
27
- ( yojson
28
- ( and
29
- :with -test
30
- ( = 2 .2.2) ) )
31
- ( ocaml-lsp-server
32
- ( and
33
- :with -dev-setup
34
- ( = 1 .22.0) ) )
35
- ( cppo
36
- ( = 1 .8.0) )
37
- (js_of_ocaml
38
- ( = 6 .0.1) )
39
- ( js_of_ocaml-ppx
40
- ( = 6 .0.1) )
41
- ( wasm_of_ocaml-compiler
42
- ( = 6 .0.1) )
43
- ( ounit2
44
- ( = 2 .2.7) )
45
- dune) )
19
+ (synopsis " ReScript compiler" ))
46
20
47
21
( package
48
22
(name analysis)
Original file line number Diff line number Diff line change 6
6
license: "LGPL-3.0-or-later"
7
7
homepage: "https://github.com/rescript-lang/rescript-compiler"
8
8
bug-reports: "https://github.com/rescript-lang/rescript-compiler/issues"
9
- depends: [
10
- "ocaml" {>= "4.14"}
11
- "ocamlformat" {with-test & = "0.27.0"}
12
- "yojson" {with-test & = "2.2.2"}
13
- "ocaml-lsp-server" {with-dev-setup & = "1.22.0"}
14
- "cppo" {= "1.8.0"}
15
- "js_of_ocaml" {= "6.0.1"}
16
- "js_of_ocaml-ppx" {= "6.0.1"}
17
- "wasm_of_ocaml-compiler" {= "6.0.1"}
18
- "ounit2" {= "2.2.7"}
19
- "dune" {>= "3.17"}
20
- "odoc" {with-doc}
21
- ]
22
9
build: [
23
10
["dune" "subst"] {dev}
24
11
[
@@ -33,3 +20,17 @@ build: [
33
20
"@doc" {with-doc}
34
21
]
35
22
]
23
+ depends: [
24
+ "ocaml" {>= "4.14"}
25
+ "ocamlformat" {with-test & = "0.27.0"}
26
+ "yojson" {with-test & = "2.2.2"}
27
+ "ocaml-lsp-server" {with-dev-setup & = "1.22.0"}
28
+ "cppo" {= "1.8.0"}
29
+ "ounit2" {= "2.2.7"}
30
+ "dune" {>= "3.17"}
31
+ "odoc" {with-doc}
32
+ # Dependencies that could be broken on Windows runners
33
+ "js_of_ocaml" {= "6.0.1" & os != "win32"}
34
+ "js_of_ocaml-ppx" {= "6.0.1" & os != "win32"}
35
+ "wasm_of_ocaml-compiler" {= "6.0.1" & os != "win32"}
36
+ ]
Original file line number Diff line number Diff line change
1
+ depends: [
2
+ "ocaml" {>= "4.14"}
3
+ "ocamlformat" {with-test & = "0.27.0"}
4
+ "yojson" {with-test & = "2.2.2"}
5
+ "ocaml-lsp-server" {with-dev-setup & = "1.22.0"}
6
+ "cppo" {= "1.8.0"}
7
+ "ounit2" {= "2.2.7"}
8
+ "dune" {>= "3.17"}
9
+ "odoc" {with-doc}
10
+ # Dependencies that could be broken on Windows runners
11
+ "js_of_ocaml" {= "6.0.1" & os != "win32"}
12
+ "js_of_ocaml-ppx" {= "6.0.1" & os != "win32"}
13
+ "wasm_of_ocaml-compiler" {= "6.0.1" & os != "win32"}
14
+ ]
You can’t perform that action at this time.
0 commit comments