first iteration of handling file deletes yeehaw

This commit is contained in:
Noah Santschi-Cooney 2023-03-04 22:02:53 +00:00
parent a797d5b378
commit e13f396268
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
8 changed files with 274 additions and 218 deletions

View file

@ -65,7 +65,7 @@ export class Extension {
}
fileAssociationsToGlob = (associations: string[]): string => {
return '**/*.{'.concat(
return '**/*{'.concat(
associations.map(s => s.substring(s.indexOf('.'))).join(',')
) + '}'
}