From ec90ae1cef86576d43defd9ac420510a22451d58 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Fri, 22 Jan 2016 17:33:06 -0500 Subject: [PATCH] console log result for debugging --- Gruntfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Gruntfile.js b/Gruntfile.js index b546b30..6644db8 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -22,6 +22,7 @@ module.exports = function(grunt) { grunt.registerTask('convert-tabs-to-html', function(){ var done = this.async(); converter('test.txt', function(result){ + console.log(result); fs.writeFile('result.html', result, function(){ done(); });