Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 0 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ jobs:
shell: bash
run:
cabal configure --project-file cabal.project.ci --prefer-oldest
- run: sed -i 's/ +lsp-server//' cabal.project.ci
if: matrix.ghc == '9.6.6'
- name: Freeze and check dependencies
env:
CABAL_PROJECT: cabal.project.ci
Expand Down
1 change: 1 addition & 0 deletions cabal.project.ci
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ package jbeam-edit
ghc-options:
-Werror
-Wwarn=unused-imports
-Wwarn=redundant-constraints
2 changes: 1 addition & 1 deletion cabal.project.release
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import: cabal.project
executable-static: True
executable-stripping: True
index-state: hackage.haskell.org 2026-01-11T16:27:22Z
index-state: hackage.haskell.org 2026-06-15T00:00:00Z

package *
ghc-options:
Expand Down
20 changes: 10 additions & 10 deletions jbeam-edit.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license-file: LICENSE
copyright: 2025 webdevred
maintainer: example@example.com
author: webdevred
tested-with: ghc ==9.6.6 ghc ==9.10.3
tested-with: ghc ==9.10.3 ghc ==9.14.1
homepage: https://github.com/webdevred/jbeam-edit#readme
bug-reports: https://github.com/webdevred/jbeam-edit/issues
synopsis:
Expand Down Expand Up @@ -98,7 +98,7 @@ library
-Wunused-packages

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -150,7 +150,7 @@ library jbeam-edit-transformation
-Wmissing-home-modules -Wpartial-fields -Wredundant-constraints

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -198,7 +198,7 @@ library jbeam-language-server
-Wmissing-home-modules -Wpartial-fields -Wredundant-constraints

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -244,7 +244,7 @@ executable jbeam-edit
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -282,7 +282,7 @@ executable jbeam-edit-dump-ast
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -327,7 +327,7 @@ executable jbeam-lsp-server
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -379,7 +379,7 @@ test-suite jbeam-edit-test
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -420,7 +420,7 @@ test-suite jbeam-edit-transformation-test
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down Expand Up @@ -470,7 +470,7 @@ test-suite jbeam-language-server-test
-threaded -rtsopts -with-rtsopts=-N

build-depends:
base >=4.18 && <4.22,
base >=4.20,
bytestring,
containers,
directory >=1.3.8.0,
Expand Down
4 changes: 2 additions & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ description: >-
and can automatically rename nodes and update references. Custom formatting rules
are supported via JBFL (JBeam Formatting Language). See the README for usage instructions
and examples: https://github.com/webdevred/jbeam-edit#readme
tested-with: [GHC == 9.6.6, GHC == 9.10.3]
tested-with: [GHC == 9.10.3, GHC == 9.14.1]

dependencies:
- base >= 4.18 && < 4.22
- base >= 4.20
- bytestring
- vector >= 0.13
- text >= 2.1.2
Expand Down
Loading