Grunt: Fatal error: watch EPERM

You can view/clone the full code here: https://github.com/mlewisTW/grunt-tests

I'd like to watch the src directory (to minify, concat, less, etc), which puts everything into the build dir. I'd also like to watch the build dir in order to livereload. Here's the watch config snippet:

watch: {
        options: {
            livereload: false
        },
        build: {
            files: ['<%= srcDir %>/**/*'],
            tasks: 'build'
        },
        reload: {
            files: ['<%= buildDir %>/**/*'],
            options: {
                livereload: true
            }
        }
    },

I'm on Windows 8. I'm getting a Fatal error: watch EPERM when I change a file, and it starts the first step of the build task (clean). I'm guessing this has something to do with the fact that I'm trying to delete a watched directory.

Is there a way to turn off the livereload watch task when I build, and then restart it when its finished?

Is there another/better way to do this?