Add pre-install npm dependency guard

This commit is contained in:
2026-08-27 12:46:55 +01:00
parent 7574b31b8c
commit f28b9ee87d
22 changed files with 1321 additions and 137 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env node
import { main } from "../lib/cli.js";
main().catch((error) => {
console.error(`dependency-guard: ${error.message}`);
process.exitCode = 2;
});