From 7c564ad1358f62f4b1c5658cf42a0612a395f8a2 Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Wed, 11 Mar 2015 08:39:38 -0700 Subject: [PATCH] Fix error in Gruntfile --- Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 75bb5e538..688fe7cd9 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -159,6 +159,6 @@ module.exports = (grunt)-> grunt.registerTask 'build', [ 'rsync:non_html', 'copy', 'sass:build', 'jade', 'browserify', 'exorcise' ] - grunt.registerTask 'dist', ['clean', 'build', 'rsync:static', 'copy:index_prerender', 'sass:dist', 'uglify'] + grunt.registerTask 'dist', ['clean', 'build', 'rsync:static', 'sass:dist', 'uglify'] grunt.registerTask 'clean-watch', ['clean', 'build', 'watch']