Reputation: 719
I am using Angular V2.
I setup a project using:
ng new PROJECT_NAME
cd PROJECT_NAME
ng serve
How do I delete the whole Angular project I setup via the command line (am on ubuntu).
Thanks
Upvotes: 1
Views: 5339
Reputation: 16292
This is more of a bash than an angular question.
cd ..
rm -fr PROJECT_NAME
Upvotes: 4