UNPKG

@dappnode/dappnodesdk

Version:

dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain

14 lines (13 loc) 554 B
import { CommandModule } from "yargs"; import { CliGlobalOptions } from "../types.js"; export declare const command = "increase [type]"; export declare const describe = "Increases the version defined in the manifest"; interface CliCommandOptions extends CliGlobalOptions { type: string; } export declare const increase: CommandModule<CliGlobalOptions, CliCommandOptions>; /** * Common handler for CLI and programatic usage */ export declare function increaseHandler({ type, dir, compose_file_name }: CliCommandOptions): Promise<string>; export {};