Comparing version 0.0.7 to 0.0.8
@@ -9,3 +9,3 @@ #!/usr/bin/env node | ||
program | ||
.version('0.0.7') | ||
.version('0.0.8') | ||
.name('abi2oas') | ||
@@ -23,3 +23,3 @@ .description("Autogenerate an Open API JSON corresponding to the functions in a smart contract's ABI. \n Call with the paths to your config file and your desired OpenAPI output file.") | ||
if (require.main === module) { | ||
if (!process.args || process.args.length !== 2) return errorClose(`abi2oas CLI called with incorrect number of args; it takes 2.`); | ||
if (process.argv.length === 2) program.help(); | ||
program.parse(process.argv); | ||
@@ -26,0 +26,0 @@ } else { |
{ | ||
"name": "abi2oas", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Ingests a smart contract's ABI and autogenerates OpenAPI JSON, ready for Swagger codegen.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
43201