From 1422e440598c642d3a95e61a295b3f644158ace6 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 24 Jan 2016 19:29:16 -0500 Subject: [PATCH] load task from tasks/cml.js file --- Gruntfile.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f4fce3f..0adab78 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,4 +1,3 @@ -var cml_converter = require('cml-html-converter'); module.exports = function(grunt) { grunt.initConfig({ cml: { @@ -8,8 +7,5 @@ module.exports = function(grunt) { } } }); - - grunt.registerMultiTask('cml', function() { - console.log(this); - }); + grunt.loadTasks('tasks'); };