Enterprise-CMCS/macpro-mako

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

Summary

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

export const install = {
  command: "install",
  describe: "install all project dependencies",
  handler: async () => {
    await runCommand("bun", ["install"], ".");
  },
};