Ignore false-cjs in validate-npm-packages

This commit is contained in:
joshhunt
2025-10-03 15:54:41 +01:00
parent 42f00cf66b
commit 6916b39439
+1 -2
View File
@@ -10,9 +10,8 @@ for file in "$ARTIFACTS_DIR"/*.tgz; do
echo "🔍 Checking NPM package: $file"
# Ignore named-exports for now as builds aren't compatible yet.
yarn attw "$file" --ignore-rules "named-exports"
yarn attw "$file" --ignore-rules "named-exports" "false-cjs"
yarn publint "$file"
done
echo "🚀 All NPM package checks passed! 🚀"