arnabwahid/wordpress-bootstrap

Javascript Live Reload

karlikdesign opened this issue · 0 comments

I noticed that the javascript wasn't updating while in "dev" mode. Not sure if this was intentional?

This is how I fixed this:
I added 'version' to the js task in Gruntfile.js then ran
grunt build
grunt dev

ie:
js: {
files: [
'<%= jshint.all %>'
],
tasks: ['uglify', 'version']
},