From 7ed7c6653ba8a033f5f40f12ababad5664b798c2 Mon Sep 17 00:00:00 2001 From: Matt Enlow Date: Tue, 2 Sep 2014 21:14:32 -0600 Subject: [PATCH] `grunt dev` calls default task Closes #3942 --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index 98f1365ce4..8c14b9cd72 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -958,7 +958,7 @@ var _ = require('lodash'), // // Note that the current implementation of watch only works with casper, not other themes. grunt.registerTask('dev', 'Dev Mode; watch files and restart server on changes', - ['concat:dev', 'copy:dev', 'emberBuildDev', 'express:dev', 'watch']); + ['default', 'express:dev', 'watch']); // ### Release // Run `grunt release` to create a Ghost release zip file.