UNPKG

makecode

Version:

MakeCode (PXT) - web-cached build tool

13 lines (12 loc) 443 B
import { Command } from "commander"; import { ProjectOptions, BuildOptions } from "makecode-core/built/commands"; interface BumpOptions extends ProjectOptions { versionFile?: string; stage?: boolean; patch?: boolean; minor?: boolean; major?: boolean; } export declare function buildCommand(opts: BuildOptions, info: Command): Promise<void>; export declare function bumpCommand(opts: BumpOptions): Promise<void>; export {};