Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-nuget-pack

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-nuget-pack - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

2

changelog.txt

@@ -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.

2

package.json
{
"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);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc