chore: upgrade dependencies (#8534)

* chore: upgrade dependencies

* FIxes

* Bump again
This commit is contained in:
Joshua Chen 2023-01-10 13:23:16 -05:00 committed by GitHub
parent 64c6b5c100
commit e8a07633ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
51 changed files with 3126 additions and 3144 deletions

View file

@ -197,7 +197,7 @@ function isValidGitRepoUrl(gitRepoUrl: string): boolean {
}
const gitStrategies = ['deep', 'shallow', 'copy', 'custom'] as const;
type GitStrategy = typeof gitStrategies[number];
type GitStrategy = (typeof gitStrategies)[number];
async function getGitCommand(gitStrategy: GitStrategy): Promise<string> {
switch (gitStrategy) {