Hey there, I’m starting on a new Ember project, but I realize that I’m going to need to change its name. Is there a simple way to do this?
1 Like
best way / most thorough way is to change the following:
- package.json name field
-
modulePrefix
in environment.js - find and replace throughout the whole project to replace the old name with the new one (to update the import paths)
- paths in app/index.html and tests/index.html
4 Likes