Ran a reformat

This commit is contained in:
Kallum Jones 2022-08-03 16:55:12 +01:00
parent 4a16f8c69d
commit 6b700d465b
No known key found for this signature in database
GPG Key ID: D7F4589C4D7F81A9
8 changed files with 65 additions and 65 deletions

View File

@ -25,7 +25,6 @@ export default class ModManager {
this.logger = ModManager.createLogger();
}
this.program
.name('mod-manager')
.description('A package (mod) manager for Fabric Minecraft Servers');

View File

@ -1,4 +1,3 @@
import path from "path";
import Initialiser from "../util/initialiser.js";
import PrintUtils from "../util/print_utils.js";

View File

@ -1,5 +1,7 @@
export default interface ModSource {
search(query: string): Promise<string>;
install(id: string): Promise<void>;
getName(): string;
}

View File

@ -35,6 +35,10 @@ export default class Initialiser {
return existsSync(this.getModManagerFolderPath());
}
public static getModManagerFolderPath(): string {
return path.join(this.MOD_MANAGER_FOLDER);
}
private static isDirFabricServer(): boolean {
const serverProperties = path.join("server.properties");
const fabric = path.join(".fabric");
@ -53,8 +57,4 @@ export default class Initialiser {
}
}
public static getModManagerFolderPath(): string {
return path.join(this.MOD_MANAGER_FOLDER);
}
}

View File

@ -3,22 +3,6 @@ import ora, { Ora } from "ora";
export default class PrintUtils {
static info(print: string) {
console.log(chalk.white(print));
}
static warn(print: string) {
console.log(chalk.yellowBright(print));
}
static success(print: string) {
console.log(chalk.greenBright(print));
}
static error(print: string) {
console.log(chalk.redBright(print));
}
static Spinner = class {
private spinner: Ora;
@ -54,4 +38,20 @@ export default class PrintUtils {
this.spinner.clear();
}
}
static info(print: string) {
console.log(chalk.white(print));
}
static warn(print: string) {
console.log(chalk.yellowBright(print));
}
static success(print: string) {
console.log(chalk.greenBright(print));
}
static error(print: string) {
console.log(chalk.redBright(print));
}
}