-
Notifications
You must be signed in to change notification settings - Fork 1
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
docs: describe --lang arg #24
Conversation
@@ -4,12 +4,6 @@ Use `create-hermione-app` to set up [hermione](https://github.com/gemini-testing | |||
|
|||
## Usage | |||
|
|||
```bash | |||
npx create-hermione-app my-app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Убрал из README.md
npx
из-за его проблем с кэшированием
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
можно проверить с приставкой @latest - у меня так работает
@@ -26,5 +26,5 @@ const argv = yargs(hideBin(process.argv)) | |||
.parse(); | |||
|
|||
const argvOpts = optsFromArgv(argv as ToolArgv); | |||
const createOpts = (defaultOpts: DefaultOpts): ToolOpts => Object.assign(argvOpts, defaultOpts); | |||
const createOpts = (defaultOpts: DefaultOpts): ToolOpts => ({ ...defaultOpts, ...argvOpts }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тут js
затиралось дефолтным ts
@@ -4,12 +4,6 @@ Use `create-hermione-app` to set up [hermione](https://github.com/gemini-testing | |||
|
|||
## Usage | |||
|
|||
```bash | |||
npx create-hermione-app my-app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
можно проверить с приставкой @latest - у меня так работает
No description provided.