Skip to content
Snippets Groups Projects
Select Git revision
  • 54b321f1016b4e07a291c3e01525061d5a47655a
  • master default protected
  • bugfix/error-on-not-found-network
  • 5.0.2
  • 5.0.1
  • 5.0.0
  • 4.1.2
  • 4.1.1
  • 4.1.0
  • 4.0.0
  • 3.13.0
  • 3.12.2
  • 3.12.1
  • 3.12.0
  • 3.11.0
  • 3.10.1
  • 3.10.0
  • 3.9.2
  • 3.9.0
  • 3.8.1
  • 3.8.0
  • 3.7.1
  • 3.7.0
23 results

hetzner_query.go

Blame
  • index.ts 560 B
    import type { ProgrammingLanguage } from '../../../constants';
    import { GitTagsDatasource } from '../../datasource/git-tags';
    import { GithubTagsDatasource } from '../../datasource/github-tags';
    import { PuppetForgeDatasource } from '../../datasource/puppet-forge';
    
    export { extractPackageFile } from './extract';
    
    export const language: ProgrammingLanguage = 'ruby';
    
    export const defaultConfig = {
      fileMatch: ['(^|/)Puppetfile$'],
    };
    
    export const supportedDatasources = [
      PuppetForgeDatasource.id,
      GithubTagsDatasource.id,
      GitTagsDatasource.id,
    ];