Skip to content

Commit

Permalink
changed: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
binjospookie committed Dec 27, 2023
1 parent 27d27cf commit 187c8a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ Outputs a list of all unique uses of the package.

```sh
npx pure-index --collect-usages my-package
npx pure-index --u my-package
npx pure-index -u my-package

npx pure-index --collect-usages react-spring
npx pure-index -u react-spring
```

Useful if the package index file contains `export *` syntax. Or to search for all uses of an external package. [More info]()
Useful if the package index file contains `export *` syntax. Or to search for all uses of an external package. [More info](#export-)

## Tips

Expand All @@ -136,7 +136,7 @@ Useful if the package index file contains `export *` syntax. Or to search for al

### _export \*_

Pure Index when getting a list of exports does not parse `export *` to find out what is exported from there. For projects with this syntax, it may result in an inability to use the library. But Pure Index can help with replacing `export *` if you run it with the [--collect-usages flag]() and replace exports with named exports.
Pure Index when getting a list of exports does not parse `export *` to find out what is exported from there. For projects with this syntax, it may result in an inability to use the library. But Pure Index can help with replacing `export *` if you run it with the [--collect-usages flag](#--collect-usages--u) and replace `export *` with named exports.

## Explanation

Expand Down

0 comments on commit 187c8a8

Please sign in to comment.