mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
refactor(frontend): 🔥 rewrite backup UI for new page base components
Removed old split code and used the composition api to to re-write the import/export functionality of mealie.
This commit is contained in:
8
makefile
8
makefile
@@ -33,10 +33,10 @@ purge: clean ## ⚠️ Removes All Developer Data for a fresh server start
|
||||
clean: clean-pyc clean-test ## 🧹 Remove all build, test, coverage and Python artifacts
|
||||
|
||||
clean-pyc: ## 🧹 Remove Python file artifacts
|
||||
find . -name '*.pyc' -exec rm -f {} +
|
||||
find . -name '*.pyo' -exec rm -f {} +
|
||||
find . -name '*~' -exec rm -f {} +
|
||||
find . -name '__pycache__' -exec rm -fr {} +
|
||||
find ./mealie -name '*.pyc' -exec rm -f {} +
|
||||
find ./mealie -name '*.pyo' -exec rm -f {} +
|
||||
find ./mealie -name '*~' -exec rm -f {} +
|
||||
find ./mealie -name '__pycache__' -exec rm -fr {} +
|
||||
|
||||
clean-test: ## 🧹 Remove test and coverage artifacts
|
||||
rm -fr .tox/
|
||||
|
||||
Reference in New Issue
Block a user