From d2c6cb98a60e9fef80fc94a40dc005bd846c3033 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Sun, 24 Jan 2016 18:44:53 -0500 Subject: [PATCH] testing files in config --- Gruntfile.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index eab0b4f..f4fce3f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,13 +1,15 @@ +var cml_converter = require('cml-html-converter'); module.exports = function(grunt) { grunt.initConfig({ - log: { - foo: [1, 2, 3], - bar: 'hello world', - baz: false + cml: { + test: { + src: 'test.txt', + dest: 'result.html' + } } }); - grunt.registerMultiTask('log', 'Log stuff.', function() { - grunt.log.writeln(this.target + ': ' + this.data); + grunt.registerMultiTask('cml', function() { + console.log(this); }); };