rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
13 lines (12 loc) • 551 B
TypeScript
import { UtilsService } from '../utils/utils.service';
import { VersionUpdaterService } from './version-updater.service';
export declare class VersionUpdaterCommands {
private readonly versionUpdaterService;
private readonly utilsService;
private readonly config;
constructor(versionUpdaterService: VersionUpdaterService, utilsService: UtilsService);
versionUpdater({ updatePackageVersion, updateDependenciesVersion, }?: {
updatePackageVersion?: string;
updateDependenciesVersion?: string;
}): Promise<void>;
}