import { currentDirectoryInstaller } from './currentDirectoryInstall.ts'; import { Options } from './index.ts'; import { siblingInstaller } from './siblingInstall.ts'; export function execute(options: Options): Promise { if (options.targetSiblings) { return siblingInstaller.install(options); } else { return currentDirectoryInstaller.install(options); } }