grunt dev calls default task

Closes #3942
This commit is contained in:
Matt Enlow 2014-09-02 21:14:32 -06:00
parent adb94efe1d
commit 7ed7c6653b

View File

@ -958,7 +958,7 @@ var _ = require('lodash'),
// //
// Note that the current implementation of watch only works with casper, not other themes. // 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', 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 // ### Release
// Run `grunt release` to create a Ghost release zip file. // Run `grunt release` to create a Ghost release zip file.