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.11 to 0.1.12

2

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

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

@@ -127,4 +127,6 @@ /*

} else {
grunt.config.set('stop.' + name + '._pid', proc.pid);
grunt.config.set('wait.' + name + '._pid', proc.pid);
// config.set splits the first param on periods, so we need to escape the task name before setting.
var escapedName = name.replace(/\./, '\\.');
grunt.config.set('stop.' + escapedName + '._pid', proc.pid);
grunt.config.set('wait.' + escapedName + '._pid', proc.pid);
runningProcs.push(proc);

@@ -131,0 +133,0 @@ if (opts.ready instanceof RegExp) {

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