1
1
mirror of https://github.com/juspay/jrec.git synced 2024-10-26 11:58:20 +03:00

Finish IDE support

This commit is contained in:
Sridhar Ratnakumar 2020-08-19 19:32:05 -04:00
parent 152d2bbfdf
commit 704a39816d
2 changed files with 16 additions and 0 deletions

View File

@ -18,6 +18,16 @@ Based on [superrecord](https://hackage.haskell.org/package/superrecord), but sim
* PureScript-style partial records — if you have a `Rec ("foo" := Int ': rest)`, `HasField "foo"` will work just fine.
## Developing
IDE support is available inside `nix-shell`. For example, if you use VS Code, you may launch it as:
```bash
nix-shell --run "code ."
```
Run tests inside ghcid using `bin/test`.
## TODOs
* Documentation.

6
hie.yaml Normal file
View File

@ -0,0 +1,6 @@
cradle:
cabal:
- path: "./src"
component: "lib:jrec"
- path: "./test"
component: "test:jrec-test"