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: 1 addition & 1 deletion .github/scripts/freeze_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ set -euo pipefail

cabal freeze --project-file "${CABAL_PROJECT:?CABAL_PROJECT missing}"
PLAN_PATH=$(find dist-newstyle -name plan.json)
JQ_QUERY='."install-plan" | map (."pkg-name") | unique'
JQ_QUERY='."install-plan" | map (."pkg-name" | select (. != "jbeam-edit")) | unique'
jq -c "$JQ_QUERY" <"$PLAN_PATH"
printf "number of dependencies: %d" "$(jq -r "${JQ_QUERY}.[]" <"$PLAN_PATH" | wc -l)"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ examples/jbeam/*.jbeam.bak
cabal.project.local
cabal.project.local~
cabal.project.*.local
cabal.project.*.freeze
dist-newstyle/
dist/
TAGS
Expand Down
1 change: 1 addition & 0 deletions cabal.project.release
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import: cabal.project
executable-static: True
index-state: hackage.haskell.org 2025-10-12T21:52:54Z

package *
ghc-options:
Expand Down
Loading