diff --git a/README.md b/README.md index 413e4b3..898c210 100644 --- a/README.md +++ b/README.md @@ -79,3 +79,4 @@ In lieu of a formal styleguide, take care to maintain the existing coding style. ## Release History * 2013-10-04   v1.0.0   Initial release +* 2013-10-04   v1.0.1   Removed debug output diff --git a/package.json b/package.json index 40a362a..8311964 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "grunt-importer", "description": "Importer adds an #import statement to JavaScript based languages including CoffeeScript that works like #include in C-based languages. It compiles files into JavaScript, concatenates them together in the places you've defined, and generates source maps.", - "version": "1.0.0", + "version": "1.0.1", "homepage": "https://github.com/colinbowern/grunt-importer", "author": { "name": "Colin Bowern", diff --git a/tasks/importer.js b/tasks/importer.js index c60a362..a776533 100644 --- a/tasks/importer.js +++ b/tasks/importer.js @@ -41,8 +41,6 @@ module.exports = function (grunt) { } grunt.util.async.concatSeries(files, function (file, next) { - grunt.log.writeln(file); - grunt.log.writeln(destination); var destinationFile = destination || file; var pkg = importer.createPackage(file);