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.5.1 to 0.5.2

2

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

@@ -6,0 +6,0 @@ "author": {

@@ -106,3 +106,7 @@ /*

if (additionalArgs.length) {
args[1]+= ' ' + additionalArgs.join(' ');
if(process.platform === 'win32') {
args[2]+= ' ' + additionalArgs.join(' ');
} else {
args[1]+= ' ' + additionalArgs.join(' ');
}
}

@@ -109,0 +113,0 @@ } else {

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