Completed migration to .NET 6.0.
This commit is contained in:
1
scripts/utils/__init__.py
Normal file
1
scripts/utils/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
|
14
scripts/utils/clear_webpack_cache.py
Normal file
14
scripts/utils/clear_webpack_cache.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import os
|
||||
import shutil
|
||||
|
||||
CACHE_DIR = "./Props/node_modules/.cache/webpack"
|
||||
|
||||
|
||||
def clear():
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
os.chdir("..")
|
||||
shutil.rmtree(CACHE_DIR, ignore_errors=True)
|
||||
|
||||
|
||||
if __name__ == "main":
|
||||
clear()
|
Reference in New Issue
Block a user