import { chalk, log } from '../command-helpers.js'; import { configGithub } from './config-github.js'; import configManual from './config-manual.js'; // @ts-expect-error TS(7006) FIXME: Parameter 'repoData' implicitly has an 'any' type. const logSuccess = (repoData) => { log(); log(chalk.greenBright.bold.underline(`Success! Netlify CI/CD Configured!`)); log(); log(`This site is now configured to automatically deploy from ${repoData.provider} branches & pull requests`); log(); log(`Next steps: ${chalk.cyanBright.bold('git push')} Push to your git repository to trigger new site builds ${chalk.cyanBright.bold('netlify open')} Open the Netlify admin URL of your site `); }; /** * @param {object} config * @param {import('../../commands/base-command.js').default} config.command * @param {boolean} config.manual * @param {*} config.repoData * @param {string} config.siteId */ // @ts-expect-error TS(7031) FIXME: Binding element 'command' implicitly has an 'any' ... Remove this comment to see the full error message export const configureRepo = async ({ command, manual, repoData, siteId }) => { if (manual) { await configManual({ command, siteId, repoData }); } else if (repoData.provider === 'github') { await configGithub({ command, siteId, repoName: repoData.name, repoOwner: repoData.owner }); } else { log(`No configurator found for the provided git remote. Configuring manually...`); await configManual({ command, siteId, repoData }); } logSuccess(repoData); };