From 207566233b2e79d1326c16664f1989fe26284caf Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Thu, 10 Sep 2026 02:43:34 +0100 Subject: [PATCH] fix: install conformance/'s dependencies before running its scripts just conformance failed with ERR_MODULE_NOT_FOUND on a fresh checkout since npm run generate/verify assumed node_modules already existed. --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 548b325..b2f7305 100644 --- a/justfile +++ b/justfile @@ -34,6 +34,7 @@ spec: # through cbor2. Once rust/ and ts/ exist, each implementation's own # conformance-check additionally runs against these same vector files. conformance: + cd conformance && npm install cd conformance && npm run generate cd conformance && npm run verify @if [ -d rust ]; then cd rust && cargo run --bin conformance-check; else echo "rust/ does not exist yet"; fi