This is what worked for me -
rm -rf node_modules/ dist/
grep -nr 'current-project-name*' .
This will return about 8-10 files (if you did not use the name in your application). Then you can make changes manually or automate it like this:
grep -nr 'current-project-name*' . | xargs sed -i 's/current-project-name/new-app-name/g'
You will need to do npm install to reinstall node modules
-
I am using ember 2.15.1 and had to modify the following files -
./tests/index.html ./tests/unit/initializers/ember-simple-auth-test.js ./package-lock.json ./app/index.html ./README.md ./package.json ./config/environment.js ./bower.json
source share