Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): stop advertising .argv property #2036

Merged
merged 1 commit into from Sep 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -103,7 +103,7 @@ yargs(hideBin(process.argv))
type: 'boolean',
description: 'Run with verbose logging'
})
.argv
.parse()
```

Run the example above with `--help` to see the help for the application.
Expand Down Expand Up @@ -138,7 +138,7 @@ yargs(Deno.args)
})
.strictCommands()
.demandCommand(1)
.argv
.parse()
```

### ESM
Expand All @@ -154,7 +154,7 @@ yargs(hideBin(process.argv))
console.info(argv)
})
.demandCommand(1)
.argv
.parse()
```

### Usage in Browser
Expand Down