grunt-textfile
Advanced tools
Comparing version 0.1.3 to 0.1.4
{ | ||
"name": "grunt-textfile", | ||
"description": "A grunt task to create text files for text-based CMS sand static file generators.", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"homepage": "https://github.com/kahlil/grunt-textfile", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -13,8 +13,5 @@ /* | ||
// Please see the Grunt documentation for more information regarding task | ||
// creation: http://gruntjs.com/creating-tasks | ||
var textfile = require('./lib/textfile').init(grunt); | ||
grunt.registerMultiTask('textfile', 'Create a new post for your textfile based blogging software.', function() { | ||
grunt.registerMultiTask('textfile', 'Create a new post for your text file based blogging software.', function() { | ||
var options, template, filename; | ||
@@ -49,3 +46,3 @@ // Merge task-specific and/or target-specific options with these defaults. | ||
// Process the the template file. | ||
// Process the template file. | ||
var result = grunt.util.normalizelf(grunt.template.process(template)); | ||
@@ -52,0 +49,0 @@ var fullPath = options.dest + '/' + filename; |
13208
194