From 5db54d3f6f76c5ba3312892b1a929cd7064c6b82 Mon Sep 17 00:00:00 2001 From: cswimr Date: Wed, 12 Feb 2025 15:17:13 -0600 Subject: [PATCH] style(parser): format --- packages/parser/src/provider.ts | 4 ++-- packages/parser/tsconfig.json | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/parser/src/provider.ts b/packages/parser/src/provider.ts index f7dabf5..e4b8616 100644 --- a/packages/parser/src/provider.ts +++ b/packages/parser/src/provider.ts @@ -27,7 +27,7 @@ export class ModrinthProvider extends UrlProvider { * Creates a new ModrinthProvider instance. * @param hash - A hash string used for identification or verification. * @param hashFormat - The format of the provided hash. - * @param url - A Resource instance representing the URL where the file can be downloaded from. + * @param url - A Resource instance representing the URL where the file can be downloaded from. * @param modId - The identifier for the Modrinth mod. * @param versionId - The version identifier for the mod. */ @@ -51,7 +51,7 @@ export class GitHubProvider extends UrlProvider { * Creates a new GitHubProvider instance. * @param hash - A hash string used for identification or verification. * @param hashFormat - The format of the hash. - * @param url - A Resource instance representing the URL where the file can be downloaded from. + * @param url - A Resource instance representing the URL where the file can be downloaded from. * @param branch - The branch name within the GitHub repository. * @param regex - A regular expression for matching specific patterns in the GitHub URL. * @param slug - A URL slug used for identifying the repository. diff --git a/packages/parser/tsconfig.json b/packages/parser/tsconfig.json index 9e4e31b..513b49d 100644 --- a/packages/parser/tsconfig.json +++ b/packages/parser/tsconfig.json @@ -1,9 +1,7 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "outDir": "dist", + "outDir": "dist" }, - "include": [ - "src/**/*.ts" - ], + "include": ["src/**/*.ts"] }