Skip to content

Commit

Permalink
Restored tests files
Browse files Browse the repository at this point in the history
  • Loading branch information
LCcodder committed Jun 8, 2024
1 parent 99a6a89 commit 003c894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def remove_files(in_directory: str) -> None:
for item in items:
if not item.count('.'):
remove_files(in_directory + "/" + str(item))
if item.endswith('.js') or item.endswith('.map'):
if item.endswith('.js') or item.endswith('.map') or item.endswith('.d.ts'):
print(f"Now removing: {str(item)}")
os.remove(in_directory + "/" + str(item))

Expand Down

0 comments on commit 003c894

Please sign in to comment.