grunt-nuget-pack
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -0,1 +1,3 @@ | ||
Version 0.0.4 (2014-09-25) | ||
Added task description. | ||
Version 0.0.3 (2014-09-08) | ||
@@ -2,0 +4,0 @@ Added new excludes option to make it easier to exclude files/folders based on glob patterns. |
{ | ||
"name": "grunt-nuget-pack", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Grunt task for creating nuget packages without using nuget.exe.", | ||
@@ -5,0 +5,0 @@ "author": "Moxiecode Systems AB <info@moxiecode.com>", |
@@ -5,3 +5,3 @@ var Package = require("../lib/Package"); | ||
module.exports = function(grunt) { | ||
grunt.registerMultiTask("nugetpack", function() { | ||
grunt.registerMultiTask("nugetpack", "Creates nupkg packages.", function() { | ||
var done = this.async(), target = grunt.config([this.name, this.target]); | ||
@@ -54,2 +54,3 @@ var packageFilePath, baseDir, package; | ||
package.saveAs(packageFilePath, done); | ||
grunt.log.ok("Created nupkg file:", packageFilePath); | ||
} catch (ex) { | ||
@@ -56,0 +57,0 @@ grunt.fail.fatal(ex); |
19013
280