Skip to content

Commit

Permalink
docs(manager): Set displayName and url for nodenv and nvm managers (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Aug 1, 2022
1 parent 72db89f commit 2dbc15e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/modules/manager/nodenv/index.ts
Expand Up @@ -4,6 +4,9 @@ import * as nodeVersioning from '../../versioning/node';

export { extractPackageFile } from './extract';

export const displayName = 'nodenv';
export const url = 'https://github.com/nodenv/nodenv';

export const language = ProgrammingLanguage.NodeJS;

export const defaultConfig = {
Expand Down
3 changes: 3 additions & 0 deletions lib/modules/manager/nvm/index.ts
Expand Up @@ -4,6 +4,9 @@ import * as nodeVersioning from '../../versioning/node';

export { extractPackageFile } from './extract';

export const displayName = 'nvm';
export const url = 'https://github.com/nvm-sh/nvm';

export const language = ProgrammingLanguage.NodeJS;

export const defaultConfig = {
Expand Down

0 comments on commit 2dbc15e

Please sign in to comment.