From 003c894f55349c42eb886064ba9419e0386b16ed Mon Sep 17 00:00:00 2001 From: Misha Date: Sat, 8 Jun 2024 21:01:54 +0300 Subject: [PATCH] Restored tests files --- scripts/{remove_js_files.py => remove_compiler_files.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename scripts/{remove_js_files.py => remove_compiler_files.py} (87%) diff --git a/scripts/remove_js_files.py b/scripts/remove_compiler_files.py similarity index 87% rename from scripts/remove_js_files.py rename to scripts/remove_compiler_files.py index da3ada7..933c296 100644 --- a/scripts/remove_js_files.py +++ b/scripts/remove_compiler_files.py @@ -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))