Skip to content

Instantly share code, notes, and snippets.

@dmarr
Last active December 16, 2015 15:29
Show Gist options
  • Save dmarr/5456766 to your computer and use it in GitHub Desktop.
Save dmarr/5456766 to your computer and use it in GitHub Desktop.
grunt.registerTask('debug', 'Debug server with continous linting and unit testing', function() {
grunt.option('force', true);
return [
'clean:server',
'compass:server',
'livereload-start',
'connect:livereload',
'open',
'watch:debug'
];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment