Fix some typos & update yarn.lock after release

Signed-off-by: ivgo <ivgo@spreadgroup.com>
This commit is contained in:
ivgo
2022-06-07 17:34:23 +02:00
parent f96cdcb9f0
commit 90450c925b
4 changed files with 5 additions and 108 deletions
-2
View File
@@ -22,8 +22,6 @@ export interface Config {
providers?: {
/**
* GitlabDiscoveryEntityProvider configuration
*
* Uses "default" as default id for the single config variant.
*/
gitlab?: Record<
string,
@@ -64,12 +64,11 @@ export class GitLabClient {
}
/**
* Checks if the catalog file is present in the repository or not.
* General existence check.
*
* @param projectPath The path to the project
* @param branch The branch used to injest entities to the catalog
* @param filePath The path to the catalog file
* @returns `true` if the file exists, `false` otherwise
* @param projectPath - The path to the project
* @param branch - The branch used to search
* @param filePath - The path to the file
*/
async hasFile(
projectPath: string,
@@ -39,7 +39,7 @@ type Result = {
};
/**
* Extracts repositories out of an GitLab instance.
* Discovers entity definition files in the groups of a Gitlab instance.
* @public
*/
export class GitlabDiscoveryEntityProvider implements EntityProvider {