New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cli-task

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli-task - npm Package Compare versions

Comparing version 0.5.6 to 0.6.0

2

package.json
{
"name": "cli-task",
"version": "0.5.6",
"version": "0.6.0",
"repository": "https://github.com/astoilkov/cli-task",

@@ -5,0 +5,0 @@ "description": "Task runner for developers minimalists",

@@ -109,2 +109,3 @@ "use strict";

case Step_1.StepStatus.Initial:
text += ' ';
break;

@@ -111,0 +112,0 @@ case Step_1.StepStatus.Running:

@@ -12,3 +12,3 @@ import { IRendererOptions } from './Renderer';

[key: string]: any;
}): this;
}): Task;
private getCurrentStep;

@@ -15,0 +15,0 @@ private execTasks;

@@ -44,4 +44,7 @@ "use strict";

withOptions(options) {
this.options = options;
return this;
let copy = new Task();
copy.options = options;
copy.steps = this.steps;
copy.stateValues = this.stateValues;
return copy;
}

@@ -48,0 +51,0 @@ getCurrentStep() {

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