Using require.js I noticed that often the dependencies are cached by the browser and don\'t get updated even if I force the page to completely reload (command+shift+R).
I used
require.config({ urlArgs: "v=" + (new Date()).getTime() });
This solved my problem, but you have to remember to remove it, before you goto production.