azp-task-bump
Advanced tools
Comparing version 0.50.0 to 0.51.0
@@ -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 |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5841
54