Skip to content

Commit

Permalink
[vue] Clear dist and node_modules dirs on clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
csordasmarton committed Jul 6, 2020
1 parent 5a5bfc0 commit 9ed6721
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,13 @@ clean_venv_dev:
$(MAKE) -C $(CC_WEB) clean_venv_dev
$(MAKE) -C $(CC_TOOLS)/plist_to_html clean_venv_dev

clean: clean_package clean_vendor
clean: clean_package
$(MAKE) -C $(CC_WEB) clean

clean_package: clean_plist_to_html clean_tu_collector clean_report_converter clean_report_hash
rm -rf $(BUILD_DIR)
find . -name "*.pyc" -delete

clean_vendor:
$(MAKE) -C $(CC_SERVER)/vendor clean_vendor

clean_plist_to_html:
$(MAKE) -C $(CC_TOOLS)/plist_to_html clean

Expand Down
4 changes: 4 additions & 0 deletions web/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,7 @@ clean_package: clean_plist_to_html

clean_plist_to_html:
rm -rf $(ROOT)/tools/plist_to_html/build

clean:
rm -rf $(CC_SERVER)/vue-cli/dist
rm -rf $(CC_SERVER)/vue-cli/node_modules

0 comments on commit 9ed6721

Please sign in to comment.