Skip to content

Commit a3c5727

Browse files
davesnxkit-ty-kate
andauthored
[new release] reason-react (2 packages) (0.13.0) (#24485)
* [new release] reason-react (2 packages) (0.13.0) CHANGES: * Remove legacy `ReactDOMRe` and `ReasonReact` modules (@anmonteiro in [reasonml/reason-react#782](reasonml/reason-react#782)) * Fix `React.useCallback*` for callbacks with multiple arguments (@anmonteiro in [reasonml/reason-react#786](reasonml/reason-react#786)) * Add melange v2 and remove upper bound on ocaml * Remove upper bound in ocaml * Use {post} in reason-react-ppx to bypass check and keep runtests * Remove {post} and remove runtest from building * Remove runtests from rr * Update packages/reason-react-ppx/reason-react-ppx.0.13.0/opam --------- Co-authored-by: Kate <[email protected]>
1 parent 49cc366 commit a3c5727

File tree

2 files changed

+101
-0
lines changed
  • packages
    • reason-react-ppx/reason-react-ppx.0.13.0
    • reason-react/reason-react.0.13.0

2 files changed

+101
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
opam-version: "2.0"
2+
synopsis: "React.js JSX PPX"
3+
description: "ReasonReact JSX PPX"
4+
maintainer: [
5+
"David Sancho <[email protected]>"
6+
"Antonio Monteiro <[email protected]>"
7+
]
8+
authors: [
9+
"Cheng Lou <[email protected]>" "Ricky Vetter <[email protected]>"
10+
]
11+
license: "MIT"
12+
homepage: "https://reasonml.github.io/reason-react"
13+
doc: "https://reasonml.github.io/reason-react"
14+
bug-reports: "https://github.com/reasonml/reason-react/issues"
15+
depends: [
16+
"dune" {>= "3.9"}
17+
"melange" {>= "2.0.0"}
18+
"ocaml" {>= "5.1.0"}
19+
"reason" {>= "3.10.0"}
20+
"ppxlib" {>= "0.28.0"}
21+
"ocamlformat" {= "0.24.0" & with-dev-setup}
22+
"odoc" {with-doc}
23+
]
24+
build: [
25+
["dune" "subst"] {dev}
26+
[
27+
"dune"
28+
"build"
29+
"-p"
30+
name
31+
"-j"
32+
jobs
33+
"@install"
34+
"@doc" {with-doc}
35+
]
36+
]
37+
dev-repo: "git+https://github.com/reasonml/reason-react.git"
38+
url {
39+
src:
40+
"https://github.com/reasonml/reason-react/releases/download/0.13.0/reason-react-0.13.0.tbz"
41+
checksum: [
42+
"sha256=dad3cbafddc591904549b8b323a813174628e620d70bb589684b71cfa6ba7bb7"
43+
"sha512=76eaac3479e1f5e7663ef2eca3cb67de829715dde40fc8928379b8c3be05166b5ef3010afede6ab1e3eeb20f7e3452e9d11a5760cbee210e514b5319b59a9b35"
44+
]
45+
}
46+
x-commit-hash: "3971e42df555f3c8fb5b4eab94a26e8e51d79f02"
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
opam-version: "2.0"
2+
synopsis: "Reason bindings for React.js"
3+
description: """
4+
ReasonReact helps you use Reason to build React components with deeply integrated, strong, static type safety.
5+
6+
It is designed and built by people using Reason and React in large, mission critical production React codebases."""
7+
maintainer: [
8+
"David Sancho <[email protected]>"
9+
"Antonio Monteiro <[email protected]>"
10+
]
11+
authors: [
12+
"Cheng Lou <[email protected]>" "Ricky Vetter <[email protected]>"
13+
]
14+
license: "MIT"
15+
homepage: "https://reasonml.github.io/reason-react"
16+
doc: "https://reasonml.github.io/reason-react"
17+
bug-reports: "https://github.com/reasonml/reason-react/issues"
18+
depends: [
19+
"dune" {>= "3.9"}
20+
"ocaml" {>= "5.1.0"}
21+
"melange" {>= "2.0.0"}
22+
"reason-react-ppx" {= version}
23+
"reason" {>= "3.10.0"}
24+
"ocaml-lsp-server" {with-test}
25+
"opam-check-npm-deps" {= "1.0.0" & with-dev-setup}
26+
"ocamlformat" {= "0.24.0" & with-dev-setup}
27+
"odoc" {with-doc}
28+
]
29+
build: [
30+
["dune" "subst"] {dev}
31+
[
32+
"dune"
33+
"build"
34+
"-p"
35+
name
36+
"-j"
37+
jobs
38+
"@install"
39+
"@doc" {with-doc}
40+
]
41+
]
42+
dev-repo: "git+https://github.com/reasonml/reason-react.git"
43+
depexts: [
44+
["react"] {npm-version = "^17.0.0 || ^18.0.0"}
45+
["react-dom"] {npm-version = "^17.0.0 || ^18.0.0"}
46+
]
47+
url {
48+
src:
49+
"https://github.com/reasonml/reason-react/releases/download/0.13.0/reason-react-0.13.0.tbz"
50+
checksum: [
51+
"sha256=dad3cbafddc591904549b8b323a813174628e620d70bb589684b71cfa6ba7bb7"
52+
"sha512=76eaac3479e1f5e7663ef2eca3cb67de829715dde40fc8928379b8c3be05166b5ef3010afede6ab1e3eeb20f7e3452e9d11a5760cbee210e514b5319b59a9b35"
53+
]
54+
}
55+
x-commit-hash: "3971e42df555f3c8fb5b4eab94a26e8e51d79f02"

0 commit comments

Comments
 (0)