shenanigans-manager
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -61,3 +61,3 @@ import { ILogger } from "./logger"; | ||
*/ | ||
protected subroutine<TSubArgs, TSubResults, TSubCommand extends ICommandClass<TSubArgs, TSubResults>>(command: TSubCommand, args: TSubArgs): Promise<TSubResults>; | ||
protected subroutine<TSubArgs, TSubResults, TSubCommand extends ICommandClass<Partial<TSubArgs>, TSubResults>>(command: TSubCommand, args: TSubArgs): Promise<TSubResults>; | ||
} |
@@ -24,3 +24,3 @@ "use strict"; | ||
: info.code.toString().red; | ||
console.log("Done executing with code".grey, codeString, `: ${info.command.grey}`, "\n"); | ||
console.log("Done executing with code".grey, `${codeString}: ${info.command.grey}`, "\n"); | ||
} | ||
@@ -27,0 +27,0 @@ /** |
{ | ||
"name": "shenanigans-manager", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Manages large-scale operations on FullScreenShenanigans project.", | ||
@@ -5,0 +5,0 @@ "bin": { |
@@ -72,3 +72,3 @@ import { ILogger } from "./logger"; | ||
*/ | ||
protected subroutine<TSubArgs, TSubResults, TSubCommand extends ICommandClass<TSubArgs, TSubResults>> | ||
protected subroutine<TSubArgs, TSubResults, TSubCommand extends ICommandClass<Partial<TSubArgs>, TSubResults>> | ||
(command: TSubCommand, args: TSubArgs): Promise<TSubResults> { | ||
@@ -75,0 +75,0 @@ return new command(args, this.logger, this.settings).execute(); |
@@ -32,3 +32,3 @@ import "colors"; | ||
console.log("Done executing with code".grey, codeString, `: ${info.command.grey}`, "\n"); | ||
console.log("Done executing with code".grey, `${codeString}: ${info.command.grey}`, "\n"); | ||
} | ||
@@ -35,0 +35,0 @@ |
88946
70
2743