Enterprise-CMCS/macpro-mako

View on GitHub
bin/cli/src/commands/emails.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { checkIfAuthenticated, runCommand } from "../lib";

export const emails = {
  command: "emails",
  handler: async () => {
    await checkIfAuthenticated();
    await runCommand("bun", ["email-dev"], "./lib/libs/email");
  },
};