Skip to content
Snippets Groups Projects
Select Git revision
21 results Searching

pnpm.js

Blame
  • index.ts 387 B
    import type { Category } from '../../../constants';
    import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
    import { extractPackageFile } from './extract';
    
    export { extractPackageFile };
    
    export const defaultConfig = {
      fileMatch: ['\\.gitlab-ci\\.ya?ml$'],
    };
    
    export const categories: Category[] = ['ci'];
    
    export const supportedDatasources = [GitlabTagsDatasource.id];