-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sora Morimoto <sora@morimoto.io>
- Loading branch information
Showing
9 changed files
with
541 additions
and
589 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
_build | ||
*~ | ||
\#*# | ||
.#* | ||
reactiveData.install | ||
api.docdir | ||
doc/html | ||
/_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
version=0.27.0 | ||
profile=conventional | ||
parse-docstrings=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
(lang dune 1.0) | ||
(lang dune 3.17) | ||
(name reactiveData) | ||
|
||
(generate_opam_files true) | ||
|
||
(maintainers "Ocsigen team <dev@ocsigen.org>") | ||
(authors "Hugo Heuzard <hugo.heuzard@gmail.com>") | ||
(license "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception") | ||
(source (github ocsigen/reactiveData)) | ||
|
||
(package | ||
(name reactiveData) | ||
(synopsis "Declarative events and signals for OCaml") | ||
(description "React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline.") | ||
(tags ("reactive" "declarative" "signal" "event" "frp")) | ||
(depends | ||
(ocaml (>= 4.08)) | ||
(react (and (>= 1.2.1) (< 1.3))))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,32 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Declarative events and signals for OCaml" | ||
description: "React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline." | ||
maintainer: "dev@ocsigen.org" | ||
description: | ||
"React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline." | ||
maintainer: ["Ocsigen team <dev@ocsigen.org>"] | ||
authors: ["Hugo Heuzard <hugo.heuzard@gmail.com>"] | ||
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception" | ||
tags: ["reactive" "declarative" "signal" "event" "frp"] | ||
homepage: "https://github.com/ocsigen/reactiveData" | ||
dev-repo: "git+https://github.com/ocsigen/reactiveData.git" | ||
bug-reports: "https://github.com/ocsigen/reactiveData/issues" | ||
|
||
doc:"http://ocsigen.github.io/reactiveData/dev/" | ||
|
||
tags: [ "reactive" "declarative" "signal" "event" "frp" ] | ||
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception" | ||
|
||
depends: [ | ||
"dune" {>= "3.17"} | ||
"ocaml" {>= "4.08"} | ||
"dune" {>= "1.0"} | ||
"react" {>= "1.2.1" < "1.3"} | ||
"react" {>= "1.2.1" & < "1.3"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocsigen/reactiveData.git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
(library | ||
(name reactiveData) | ||
(public_name reactiveData) | ||
(libraries react) | ||
) | ||
(name reactiveData) | ||
(public_name reactiveData) | ||
(libraries react)) |
Oops, something went wrong.