Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build with ghc(js) 9.8.2 + 9.10.1 #56

Merged
merged 7 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
packages: .

if arch(javascript)
extra-packages: ghci
ymeister marked this conversation as resolved.
Show resolved Hide resolved
12 changes: 6 additions & 6 deletions patch.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ flag hlint
library
hs-source-dirs: src
default-language: Haskell2010
build-depends: base >= 4.9 && < 4.19
build-depends: base >= 4.9 && <= 4.21
, constraints-extras >= 0.3 && < 0.5
, commutative-semigroups >= 0.0 && < 0.2
, containers >= 0.6 && < 0.7
, commutative-semigroups >= 0.0 && <= 0.2.0.1
ymeister marked this conversation as resolved.
Show resolved Hide resolved
, containers >= 0.6 && <= 0.7
, dependent-map >= 0.3 && < 0.5
, dependent-sum >= 0.6 && < 0.8
, lens >= 4.7 && < 5.3
, lens >= 4.7 && <= 5.3.2
, indexed-traversable >= 0.1 && < 0.2
, semigroupoids >= 4.0 && < 7
, transformers >= 0.5.6.0 && < 0.7
Expand Down Expand Up @@ -86,7 +86,7 @@ test-suite tests
, containers
, hedgehog
, HUnit
if impl(ghcjs)
if impl(ghcjs) || arch(javascript)
buildable: False

test-suite hlint
Expand All @@ -106,7 +106,7 @@ test-suite hlint
else
build-depends: hlint >= 3.5 && < 3.6

if impl(ghcjs) || !flag(hlint)
if impl(ghcjs) || arch(javascript) || !flag(hlint)
buildable: False

source-repository head
Expand Down
Loading