Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

azp-task-bump

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azp-task-bump - npm Package Compare versions

Comparing version 0.50.0 to 0.51.0

7

index.js

@@ -0,1 +1,2 @@

#!/usr/bin/env node
const fs = require("fs"),

@@ -12,7 +13,7 @@ path = require("path"),

else
manifestPath = path.join(".", "task.json");
manifestPath = "task.json";
if(!fs.existsSync(manifestPath))
{
console.error(`${path} does not exist.`);
console.error(`"${manifestPath}" does not exist.`);
return 1;

@@ -27,3 +28,3 @@ }

{
console.error(`${manifestPath} is a directory, but there is no task.json in it.`);
console.error(`"${manifestPath}" is a directory, but there is no task.json in it.`);
return 1;

@@ -30,0 +31,0 @@ }

{
"name": "azp-task-bump",
"version": "0.50.0",
"version": "0.51.0",
"description": "Command line utility that increases the patch number of Azure Pipelines task manifests",
"license": "MIT",
"bin": "index.js",
"author": {

@@ -39,3 +38,5 @@ "email": "sevaa@sprynet.com",

"json-in-place": "^1.0.1"
}
},
"bin": {"azp-task-bump": "index.js"},
"engines": {"node": ">=6"}
}

@@ -19,3 +19,3 @@ # azp-task-bump

working directory. If provided, it should be either a path to a task.json file (absolute or relative), or
a path to a directory where task.json can be found.
a path to a directory where task.json can be found. Wildcard paths are not supported.

@@ -22,0 +22,0 @@ On machines with case sensitive file systems, the file name `task.json` is expected to be in lowercase. The encoding

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