Skip to content

Commit

Permalink
chore: ignore coverage dir and update README examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tzellman committed Apr 9, 2021
1 parent e1ad1e2 commit 15c5ee0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/tmp/
/.idea
/*.iml
/coverage

# dependencies
/bower_components/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Example usage:
```hbs
{{faker-sentence 10}} {{!-- create a 10-word sentence --}}
{{faker-sentences 5}} {{!-- create a 5-sentence string --}}
<img src={{faker-fake "{{image.avatar}}"}}>
<a href='mailto:{{faker-fake "{{internet.email}}"}}'>
<img src={{faker-fake "{{image.avatar}}"}} alt="avatar">
<a href={{concat "mailto:" (faker-fake "{{internet.email}}")}}>Send Email!</a>
{{faker-fake "{{name.lastName}}, {{name.firstName}} {{name.suffix}}"}}
{{faker-text 10}} {{!-- create a random variation of lorem that repeats 10 times --}}
```
Expand Down

0 comments on commit 15c5ee0

Please sign in to comment.