Skip to content

Commit

Permalink
chore: Make haskell code visible to ghci.
Browse files Browse the repository at this point in the history
Needed for vscode and haskell-language-server to work.
  • Loading branch information
iphydf committed Dec 22, 2023
1 parent 78ebbde commit 97c76e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ haskell_library(
"src/GitHub/Types/Base/*.hs",
"src/GitHub/Types/Base*.hs",
]),
compiler_flags = ["-j4"],
ghcopts = ["-j4"],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
Expand All @@ -28,7 +28,7 @@ haskell_library(
"src/GitHub/Types/Events/*.hs",
"src/GitHub/Types/Event*.hs",
]),
compiler_flags = ["-j4"],
ghcopts = ["-j4"],
src_strip_prefix = "src",
visibility = ["//visibility:public"],
deps = [
Expand All @@ -52,7 +52,7 @@ haskell_library(
],
),
src_strip_prefix = "src",
version = "0.1.2",
version = "0.1.3",
visibility = ["//visibility:public"],
deps = [
":github-base",
Expand Down Expand Up @@ -91,7 +91,7 @@ hspec_test(
"+RTS",
"-N4",
],
compiler_flags = [
ghcopts = [
"-threaded",
"-rtsopts",
],
Expand Down
2 changes: 1 addition & 1 deletion github-tools.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: github-tools
version: 0.1.2
version: 0.1.3
synopsis: Various Github helper utilities.
homepage: https://toktok.github.io/
license: GPL-3
Expand Down

0 comments on commit 97c76e2

Please sign in to comment.