Can ember-cli watch and build automatically without starting the server?
The title is pretty much my question. I serve the directory dist
in different ways and I still like the auto build, but I don't have to start the server. I have looked through the documents and help of the Kli, but have not seen anything concrete. I know the cli help does not contain everything because there is no list in it ember build
that is available.
source to share
If I understand correctly, you want the team to ember build
watch for changes in the file tree and rebuild when changed?
They have injected ember build --watch
a backwards that will fire when the file changes. Tested just now and it worked on 0.2.7. I don't know which version it ended up in. Let me know if this is not the answer you are looking for.
source to share