Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | /**
* CI Configurators Module
*
* Provider-specific CI/CD workflow generators for Hugo sites.
* Each configurator knows how to generate workflow files for its platform.
*/
import { GithubCIConfigurator } from './github-ci.js';
import { GitlabCIConfigurator } from './gitlab-ci.js';
import { ForgejoCIConfigurator } from './forgejo-ci.js';
/**
* Get the appropriate CI configurator for a git provider
*/
export function getCIConfigurator(provider) {
switch (provider) {
case 'github':
return new GithubCIConfigurator();
case 'gitlab':
return new GitlabCIConfigurator();
case 'forgejo':
return new ForgejoCIConfigurator();
case 'generic':
default:
return null;
}
}
export { GithubCIConfigurator } from './github-ci.js';
export { GitlabCIConfigurator } from './gitlab-ci.js';
export { ForgejoCIConfigurator } from './forgejo-ci.js';
|