fix(core): update

This commit is contained in:
2020-12-31 03:56:40 +00:00
parent 08cb2392fa
commit bf3e640307
14 changed files with 10028 additions and 600 deletions

View File

@@ -24,13 +24,13 @@ export class GitRepo {
/* ---------------------------------------------- *
* ------------------ helpers ------------------- *
* ---------------------------------------------- */
const gitRegex = function(stringArg: string) {
const gitRegex = function (stringArg: string) {
const regexString = /([a-zA-Z0-9\-\.]*)(?:\/|\:)([a-zA-Z0-9\-\.]*)(?:\/)([a-zA-Z0-9\-\.]*)(?:\.git)/;
let regexMatches = regexString.exec(stringArg);
return regexMatches;
};
const gitLink = function(
const gitLink = function (
hostArg: string,
userArg: string,
repoArg: string,