-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
52 changed files
with
327 additions
and
327 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
let all = [Cmd_new.cmd, Cmd_ls.cmd, Cmd_gen.cmd]; |
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
File renamed without changes.
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,4 @@ | ||
(executable (name spin_app) (modules (:standard)) (public_name spin.exe) | ||
(libraries base cmdliner lwt.unix console.lib pastel.lib spin.lib) | ||
(flags -open Base) (preprocess (pps lwt_ppx ppx_let))) | ||
(include_subdirs unqualified) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,123 @@ | ||
{ | ||
"name": "spin", | ||
"esy": { | ||
"build": "dune build -p #{self.name}", | ||
"buildDev": "refmterr dune build -p #{self.name}", | ||
"buildsInSource": "_build", | ||
"release": { | ||
"bin": { | ||
"spin": "spin.exe" | ||
} | ||
} | ||
}, | ||
"buildDirs": { | ||
"test": { | ||
"require": [ | ||
"spin.lib", | ||
"rely.lib" | ||
], | ||
"flags": [ | ||
"-open", | ||
"Base", | ||
"-linkall", | ||
"-g", | ||
"-w", | ||
"-9" | ||
], | ||
"includeSubdirs": "unqualified", | ||
"namespace": "spin_test" | ||
}, | ||
"test_runner": { | ||
"require": [ | ||
"spin/test" | ||
], | ||
"bin": { | ||
"test-runner.exe": "test_runner.re" | ||
} | ||
}, | ||
"lib": { | ||
"preprocess": [ | ||
"pps", | ||
"lwt_ppx", | ||
"ppx_let", | ||
"ppx_sexp_conv" | ||
], | ||
"require": [ | ||
"base", | ||
"console.lib", | ||
"pastel.lib", | ||
"lwt.unix", | ||
"str", | ||
"stdio", | ||
"sexplib", | ||
"jingoo", | ||
"fileutils" | ||
], | ||
"flags": [ | ||
"-open", | ||
"Base" | ||
], | ||
"includeSubdirs": "unqualified", | ||
"namespace": "Spin" | ||
}, | ||
"bin": { | ||
"preprocess": [ | ||
"pps", | ||
"lwt_ppx", | ||
"ppx_let" | ||
], | ||
"require": [ | ||
"base", | ||
"cmdliner", | ||
"lwt.unix", | ||
"console.lib", | ||
"pastel.lib", | ||
"spin.lib" | ||
], | ||
"flags": [ | ||
"-open", | ||
"Base" | ||
], | ||
"bin": { | ||
"spin.exe": "spin_app.re" | ||
}, | ||
"includeSubdirs": "unqualified" | ||
} | ||
}, | ||
"dependencies": { | ||
"@esy-ocaml/reason": "*", | ||
"@opam/base": "v0.13.0", | ||
"@opam/cmdliner": "1.0.4", | ||
"@opam/dune": ">=1.6.0", | ||
"@opam/fileutils": "*", | ||
"@opam/jingoo": "*", | ||
"@opam/lwt": "^4.4.0", | ||
"@opam/lwt_ppx": "^1.2.4", | ||
"@opam/ppx_let": "v0.13.0", | ||
"@opam/ppx_sexp_conv": "v0.13.0", | ||
"@opam/sexplib": "v0.13.0", | ||
"@reason-native/console": "^0.1.0", | ||
"@reason-native/pastel": "^0.2.2", | ||
"@reason-native/rely": "^3.1.0", | ||
"ocaml": "~4.8.1000" | ||
}, | ||
"devDependencies": { | ||
"@opam/merlin": "*", | ||
"@opam/odoc": "*", | ||
"@opam/utop": "*", | ||
"@pesy/esy-pesy": "esy/pesy#5c6e1c3", | ||
"refmterr": "*" | ||
}, | ||
"resolutions": { | ||
"@opam/jingoo": "tmattio/jingoo:jingoo.opam#e012716" | ||
}, | ||
"scripts": { | ||
"start": "esy x spin.exe", | ||
"test": "esy x test-runner.exe", | ||
"doc": "esy dune build @doc", | ||
"format": "esy dune build @fmt --auto-promote", | ||
"watch": "esy dune build -p #{self.name} --watch", | ||
"doc-path": "esy echo #{self.target_dir}/default/_doc/_html/index.html", | ||
"utop": "esy dune utop lib -- -implicit-bindings" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.