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

index.ts

Blame
  • index.ts 307 B
    import { LANGUAGE_NODE } from '../../constants/languages';
    import * as nodeVersioning from '../../versioning/node';
    
    export { extractPackageFile } from './extract';
    
    export const language = LANGUAGE_NODE;
    
    export const defaultConfig = {
      fileMatch: ['^.node-version$'],
      versioning: nodeVersioning.id,
    };