mirror of https://github.com/zulip/zulip.git
check-openapi: Modernize yargs usage.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
7d6c5beb19
commit
15cec69995
|
@ -9,12 +9,15 @@ const ExampleValidator = require("openapi-examples-validator");
|
|||
const Prettier = require("prettier");
|
||||
const SwaggerParser = require("swagger-parser");
|
||||
const {Composer, CST, LineCounter, Parser, Scalar, YAMLMap, YAMLSeq, visit} = require("yaml");
|
||||
const yargs = require("yargs");
|
||||
const {hideBin} = require("yargs/helpers");
|
||||
const yargs = require("yargs/yargs");
|
||||
|
||||
const {argv} = yargs.option("fix", {
|
||||
type: "boolean",
|
||||
description: "Automatically fix some problems",
|
||||
});
|
||||
const argv = yargs(hideBin(process.argv))
|
||||
.option("fix", {
|
||||
type: "boolean",
|
||||
description: "Automatically fix some problems",
|
||||
})
|
||||
.parse();
|
||||
|
||||
async function checkFile(file) {
|
||||
const yaml = await fs.promises.readFile(file, "utf8");
|
||||
|
|
Loading…
Reference in New Issue