From: Eric Morris Date: Mon, 6 Jan 2014 17:47:30 +0000 (-0800) Subject: Change includes to assemble in Grunt task definitions X-Git-Tag: v1.0.5~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c5552e7fd8cd3c1cf5e7fd94f14b647b3750148;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Change includes to assemble in Grunt task definitions --- diff --git a/Gruntfile.js b/Gruntfile.js index bd08558d..2b1dd947 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -90,7 +90,7 @@ module.exports = function(grunt) { watch: { docs: { files: ['docs/docs.php', 'docs/**/*.php', 'docs/**/*.html', 'css/*.css'], - tasks: ['shell:makeStage', 'includes:docsDev', 'shell:testDocs'], + tasks: ['shell:makeStage', 'assemble:docsDev', 'shell:testDocs'], options: { livereload: true, }, @@ -102,9 +102,9 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.registerTask('make:templates', ['includes:templates', 'shell:zipTemplates']); - grunt.registerTask('deploy:downloads', ['shell:makeStage', 'includes:templates', 'shell:zipTemplates', 'shell:zipFramework', 'shell:linkFramework', 'shell:deployDownloads', 'shell:cleanUp']); - grunt.registerTask('make:docs', ['shell:makeStage', 'includes:docsDev', 'shell:testDocs']); - grunt.registerTask('deploy:docs', ['shell:makeStage', 'includes:docsDeploy', 'shell:deployDocs', 'shell:cleanUp']); - grunt.registerTask('default', ['shell:makeStage', 'includes', 'shell:deployDocs']); + grunt.registerTask('make:templates', ['assemble:templates', 'shell:zipTemplates']); + grunt.registerTask('deploy:downloads', ['shell:makeStage', 'assemble:templates', 'shell:zipTemplates', 'shell:zipFramework', 'shell:linkFramework', 'shell:deployDownloads', 'shell:cleanUp']); + grunt.registerTask('make:docs', ['shell:makeStage', 'assemble:docsDev', 'shell:testDocs']); + grunt.registerTask('deploy:docs', ['shell:makeStage', 'assemble:docsDeploy', 'shell:deployDocs', 'shell:cleanUp']); + //grunt.registerTask('default', ['shell:makeStage', 'assemble', 'shell:deployDocs']); }; \ No newline at end of file