Each time I paste the code into my repository after making changes to the JS or CSS files, I run the following commands:
rake assets:clean rake assets:precompile
I have quite a few assets, so this process always takes at least a minute. Is there any way to make it move faster? For example, if I just changed CSS, is there a way to tell him to focus only on CSS files and not bother with JS cleanup and precompilation?
Edit: Unfortunately, I had to point out that this works. I know that I do not need to precompile assets during development :)
source share