UNPKG

netlify

Version:

Netlify command line tool

63 lines 3.22 kB
import { validateSiteName } from '../../utils/validation.js'; const sites = (_options, command) => { command.help(); }; export const createSitesCreateCommand = (program) => { program .command('sites:create') .description(`Create an empty project (advanced) Create a blank project that isn't associated with any git remote. Will link the project to the current working directory.`) .option('-n, --name <name>', 'name of project', validateSiteName) .option('-a, --account-slug <slug>', 'account slug to create the project under') .option('-c, --with-ci', 'initialize CI hooks during project creation') .option('-m, --manual', 'force manual CI setup. Used --with-ci flag') .option('--disable-linking', 'create the project without linking it to current directory') .option('-p, --prompt <prompt>', 'description of the site to create (delegates to `netlify create`)') .option('--json', 'Output project data as JSON') .addHelpText('after', `Create a blank project that isn't associated with any git remote. Will link the project to the current working directory.`) .action(async (options, command) => { if (options.prompt) { const { createAction } = await import('../create/create-action.js'); await createAction('', options, command); return; } const { sitesCreate } = await import('./sites-create.js'); await sitesCreate(options, command); }); }; export const createSitesCommand = (program) => { createSitesCreateCommand(program); program .command('sites:list') .description('List all projects you have access to') .option('--json', 'Output project data as JSON') .action(async (options, command) => { const { sitesList } = await import('./sites-list.js'); await sitesList(options, command); }); program .command('sites:search') .description('Search for projects by name') .argument('<search-term>', 'Full or partial project name to search for') .option('--json', 'Output project data as JSON') .addExamples(['netlify sites:search my-project', 'netlify sites:search "partial name" --json']) .action(async (searchTerm, options, command) => { const { sitesSearch } = await import('./sites-search.js'); await sitesSearch(searchTerm, options, command); }); program .command('sites:delete') .description('Delete a project\nThis command will permanently delete the project on Netlify. Use with caution.') .argument('<id>', 'Project ID to delete.') .addExamples(['netlify sites:delete 1234-3262-1211']) .action(async (siteId, options, command) => { const { sitesDelete } = await import('./sites-delete.js'); await sitesDelete(siteId, options, command); }); return program .command('sites') .description(`Handle various project operations\nThe sites command will help you manage all your projects`) .addExamples(['netlify sites:create --name my-new-project', 'netlify sites:list']) .action(sites); }; //# sourceMappingURL=sites.js.map