@grept/node-plugin
Version:
Plugin for @grt/core. Help to manage nodejs versions of your repos
12 lines (11 loc) • 491 B
TypeScript
import { BasePlugin } from '@grept/common';
import { IInputOptions, IOutputItem } from './interfaces';
export declare class NodeVersionPlugin extends BasePlugin<IInputOptions, IOutputItem> {
private octokitService;
private optionsValidator;
protected applyDefaults(options?: IInputOptions): IInputOptions;
protected validate(options: IInputOptions): void;
protected perform(options: IInputOptions): Promise<IOutputItem[]>;
private getNvmrc;
private getEngines;
}