everyone, I'm working on my project with gulp, browserify, angular,but I run into a stone wall. I have wrote the code
var indexController = require('./controllers/index.js');
when I modify the controller file "index.js", and rebuild the project, the final javascript in browser is just still not refreshed.
So I search the way how to automatically add md5 signature after the require:
var indexController = require('./controllers/index.js?v=324975934795');
just like when working in html:
<script src="./controllers/index.js?v=324975934795"></script>
Also, I want to find a tool to help me automatically finish it.
I should appreciate it if anyone who suggest me a tool or show me how to automatically do the job.