1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-24 00:35:43 +03:00

[ hie.yaml ] fixed support to work in vscode

This commit is contained in:
Jonathan Prieto-Cubides 2021-10-30 12:30:06 +02:00
parent 9b8474e809
commit 92ebbd5312
2 changed files with 11 additions and 8 deletions

View File

@ -1,8 +1,10 @@
cradle:
stack:
- path: ./src/test
component: "minijuvix:test:minijuvix-test"
- path: ./src/MiniJuvix
component: "minijuvix:src"
- path: ./src/app
component: "minijuvix:exe:MiniJuvix"
cabal:
- path: "src"
component: "lib:MiniJuvix"
- path: "src/app/Main.hs"
component: "MiniJuvix:exe:MiniJuvix"
- path: "src/test"
component: "MiniJuvix:test:MiniJuvix-test"

View File

@ -5,6 +5,7 @@ Tools used so far:
- stan
- summoner
- ghcup
- `implicit-hie` generates `hie.yaml`.
- See
[gluedeval](https://gist.github.com/AndrasKovacs/a0e0938113b193d6b9c1c0620d853784).
@ -22,5 +23,5 @@ Initial task order for Minijuvix indicated between parenthesis:
- On deriving stuff using Standalone Der.
See https://kowainik.github.io/posts/deriving.
- To avoid boilerplate in the cabal file, one could use [common stanzas](https://vrom911.github.io/blog/common-stanzas). At the moment, I'm using cabal-edit to keep the bounds and this tool do not support stanzas. So be it.
- To avoid boilerplate in the cabal file, one could use [common stanzas](https://vrom911.github.io/blog/common-stanzas). At the moment, I'm using cabal-edit to keep the bounds and this tool does not support stanzas. So be it.
- Using MultiParamTypeClasses to allow me deriving multi instances in one line.