Skip to content

Commit

Permalink
Clean up more in make clean command (aces#8191)
Browse files Browse the repository at this point in the history
The make clean command should remove the node_modules and package-lock.json files from the electrophysiology_browser module. Modified Makefile to include the cleanup task of those files.
  • Loading branch information
maltheism authored Oct 21, 2022
1 parent dc81633 commit ba39506
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ clean:
rm -f VERSION
rm -rf vendor
rm -rf node_modules
rm package-lock.json
rm -f package-lock.json
rm -rf modules/electrophysiology_browser/jsx/react-series-data-viewer/node_modules
rm -f modules/electrophysiology_browser/jsx/react-series-data-viewer/package-lock.json

# Perform static analysis checks
checkstatic: phpdev
Expand Down

0 comments on commit ba39506

Please sign in to comment.