]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Change includes to assemble in Grunt task definitions
authorEric Morris <eric@zurb.com>
Mon, 6 Jan 2014 17:47:30 +0000 (09:47 -0800)
committerEric Morris <eric@zurb.com>
Mon, 6 Jan 2014 17:47:30 +0000 (09:47 -0800)
Gruntfile.js

index bd08558d52c4c68ef1ddf48d7fa0ccfbbb46ce52..2b1dd947cff70ad18c3aa7d2b79179d9172e1a47 100644 (file)
@@ -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