Socket
Socket
Sign inDemoInstall

grunt

Package Overview
Dependencies
54
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.11 to 0.3.12

5

lib/grunt/utils.js

@@ -95,3 +95,6 @@ /*

child.stderr.on('data', function(buf) { stderr += buf; });
child.on('exit', function(code) {
// Node 0.8 no longer waits for stdio pipes to be closed before emitting the
// exit event (grunt issue #322).
var eventName = process.version.split('.')[1] === '6' ? 'exit' : 'close';
child.on(eventName, function(code) {
// Remove trailing whitespace (newline)

@@ -98,0 +101,0 @@ stdout = _.rtrim(stdout);

2

package.json
{
"name": "grunt",
"description": "A task-based command line build tool for JavaScript projects.",
"version": "0.3.11",
"version": "0.3.12",
"author": "\"Cowboy\" Ben Alman (http://benalman.com/)",

@@ -6,0 +6,0 @@ "homepage": "http://github.com/cowboy/grunt",

@@ -45,2 +45,3 @@ # grunt

* 2012/07/30 - v0.3.12 - Fixing a bug in node 0.8.x where utils.spawn would terminate before receiving all child stdout.
* 2012/06/25 - v0.3.10 - Updating a few dependencies to work with node 0.8.x (0.6.x should still work).

@@ -47,0 +48,0 @@ * 2012/04/18 - v0.3.9 - The min task (via the uglify helper) now appends a semicolon to the end of the generated source.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc