Skip to content
Merged
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
12 changes: 12 additions & 0 deletions packages/contracts-bedrock/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,18 @@ pre-pr *ARGS:
cp -r "$TEMP_BUILD_DIR/cache" ./
fi

twrap:
#!/usr/bin/env sh
if [ -z "$WRAP_DISABLED" ]; then
tput rmam
export WRAP_DISABLED=1
echo "Terminal line wrapping disabled"
else
tput smam
unset WRAP_DISABLED
echo "Terminal line wrapping enabled"
fi

# Fixes linting errors.
lint-fix:
forge fmt
Expand Down