signing-enclave
Version:
A code signing and notarization tool for macOS and Windows applications. Uses Azure Key Vault for secret and certificate management.
18 lines • 705 B
JavaScript
;
// src/cli.ts
// #!/usr/bin/env node
Object.defineProperty(exports, "__esModule", { value: true });
const extra_typings_1 = require("@commander-js/extra-typings");
const watch_1 = require("./commands/watch");
// import { watchReceiptsCommand } from "./commands/watch-receipts";
const program = new extra_typings_1.Command();
program
.name("signing-enclave")
.description("A CLI tool to watch a folder and process new files with signing and notarization tasks.")
.version("1.0.0");
// Register commands
program.addCommand(watch_1.watchCommand);
// program.addCommand(watchReceiptsCommand);
// Parse and execute commands
program.parse(process.argv);
//# sourceMappingURL=cli.js.map