@aws-amplify/cli
Version: 
20 lines (16 loc) • 391 B
text/typescript
import { Binary } from './binary';
/**
 * Proxies commands to the downloaded binary
 */
export const run = async (): Promise<void> => {
  const binary = new Binary();
  return binary.run();
};
/**
 * Downloads the amplify cli binary
 */
export const install = async (): Promise<void> => {
  const binary = new Binary();
  return binary.install();
};
// force version bump to 13.0.0 again