When you setup gruntfile.js where you are going to run multiple tasks.
Like “watch” and “imageminify”.
My question is this is it correct to write the config file like this to get both these dependancys to run.
grunt.registerTask('default', ['watch', 'imagemin']);
?