run-project-commands
Version:
A powerful CLI toolkit for developers to run, manage, and automate project commands across JavaScript/TypeScript projects with task automation and workflow management
27 lines (24 loc) • 503 B
text/typescript
// Command types
export interface CommandResult {
success: boolean;
message: string;
}
// Doctor command specific types
export interface VersionInfo {
local: string | null;
latest: string | null;
updateAvailable: boolean;
}
export interface DoctorCheckResult {
installation: {
isGlobal: boolean;
message: string;
};
version: VersionInfo;
nodeVersion: {
current: string;
required: string;
compatible: boolean;
message: string;
};
}