netlify-cli
Version:
Netlify command line tool
9 lines • 358 B
JavaScript
export const createWatchCommand = (program) => program
.command('watch')
.description('Watch for site deploy to finish')
.addExamples([`netlify watch`, `git push && netlify watch`])
.action(async (options, command) => {
const { watch } = await import('./watch.js');
await watch(options, command);
});
//# sourceMappingURL=index.js.map