Skip to content

Commit 075f33a

Browse files
cleanup
1 parent a93bfa3 commit 075f33a

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

CLAUDE.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,14 @@ Version-specific tests (V1 and V2) for JS/TS packages.
137137

138138
```bash
139139
# Build and test with just
140-
just build-cli
141-
just test-stateless-js
142-
just test-compressed-token
143-
just test-cli
140+
just cli::build
141+
just js::test-stateless
142+
just js::test-compressed-token
143+
just cli::test
144+
145+
# Or use root-level aggregates that include cli and js targets
146+
just build
147+
just test
144148
```
145149

146150
**Environment variables:**

forester/justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export TEST_V1_STATE := env_var_or_default("TEST_V1_STATE", "true")
55
export TEST_V2_STATE := env_var_or_default("TEST_V2_STATE", "true")
66
export TEST_V1_ADDRESS := env_var_or_default("TEST_V1_ADDRESS", "true")
77
export TEST_V2_ADDRESS := env_var_or_default("TEST_V2_ADDRESS", "true")
8+
export RUST_BACKTRACE := env_var_or_default("RUST_BACKTRACE", "1")
89

910
default:
1011
@just --list

0 commit comments

Comments
 (0)