aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-11-04 16:47:29 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-11-04 16:47:29 +0300
commit8f57cf6d73d591068b970729add2f1dec42b1819 (patch)
tree2046b1890c9b0e34f46a119ed9f56f3aab61b359 /README.md
parent6f55f616d7f166df406b4fb3f4d048cf3e8a8d16 (diff)
Add support for GHC 8.4.4
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index 82adb0e..249d3b0 100644
--- a/README.md
+++ b/README.md
@@ -42,14 +42,20 @@ cd haskell-code-explorer
To build Haskell Code Explorer Stack ([https://docs.haskellstack.org/en/stable/README/](https://docs.haskellstack.org/en/stable/README/)) is needed.
-At the moment Haskell Code Explorer supports GHC 8.4.3, GHC 8.2.2 and 8.0.2.
+At the moment Haskell Code Explorer supports GHC 8.4.4, GHC 8.4.3, GHC 8.2.2, and 8.0.2.
-For GHC 8.4.3:
+For GHC 8.4.4:
```bash
stack install
```
+For GHC 8.4.3:
+
+```bash
+stack --stack-yaml=stack-8.4.3.yaml install
+```
+
For GHC 8.2.2:
```bash
@@ -64,7 +70,7 @@ stack --stack-yaml=stack-8.0.2.yaml install
## Indexing source code of a Cabal package
-`haskell-code-indexer` executable is responsible for indexing packages (by default index is saved to `.haskell-code-explorer` directory).
+`haskell-code-indexer` executable is responsible for indexing packages (by default, index is saved to `.haskell-code-explorer` directory).
A package should be built using either cabal-install or stack before indexing (`cabal new-build`,`cabal build`, or `stack build` command should be executed).
@@ -83,7 +89,7 @@ Show all indexer options:
haskell-code-indexer -h
```
-Index package :
+Index package:
```bash
haskell-code-indexer --package PATH
```