Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Update the flag from -i to -p #67

Merged
merged 1 commit into from
Apr 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/typewiz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ TypeWiz works by [instrumenting your code](https://medium.com/@urish/diving-into
In some scenarios, for example, when an integration with your tool chain does not exist yet, you will want to instrument your code manually using the `instrument` command:

```bash
typewiz instrument -i myFile.ts
typewiz instrument -p myFile.ts
```

The above command will instrument `myFile.ts` and write the result in place, overwriting the original input file. You can remove the `-i` flag to output the instrumented source code to the standard output, or change it to `-o filename.ts` to write the output to a different file.
The above command will instrument `myFile.ts` and write the result in place, overwriting the original input file. You can remove the `-p` flag to output the instrumented source code to the standard output, or change it to `-o filename.ts` to write the output to a different file.

### Apply discovered types

Expand Down