Socket
Socket
Sign inDemoInstall

grunt-run

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-run - npm Package Compare versions

Comparing version 0.1.9 to 0.1.10

5

package.json
{
"name": "grunt-run",
"description": "Invite external commands into your grunt process with three tasks `run`, `wait` and `stop`.",
"version": "0.1.9",
"version": "0.1.10",
"homepage": "https://github.com/spenceralger/grunt-run",

@@ -27,2 +27,5 @@ "author": {

},
"dependencies": {
"lodash": "~2.4.1"
},
"devDependencies": {

@@ -29,0 +32,0 @@ "grunt-contrib-jshint": "~0.7",

6

tasks/run.js

@@ -43,3 +43,3 @@ /*

cwd: opts.cwd,
stdio: ['ignore', process.stdout, 'pipe']
stdio: ['ignore', 'pipe', 'pipe']
};

@@ -86,2 +86,6 @@

// handle stdout
proc.stdout.pipe(process.stdout);
// handle stderr
function onStderr(chunk) {

@@ -88,0 +92,0 @@ process.stderr.write(chunk);

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