#!/bin/sh
set -e
# buildtool ships no upstream test suite; at least check the module loads
# and that its main entry points are present.
node -e 'const bt = require("@marijn/buildtool"); if (!bt || typeof bt.build != "function") { console.error("buildtool: missing build() export"); process.exit(1) }'
