Skip to content

Commit f64b188

Browse files
committedJul 18, 2023
run verb to generate README
1 parent 03ea082 commit f64b188

File tree

1 file changed

+47
-28
lines changed

1 file changed

+47
-28
lines changed
 

‎README.md

+47-28
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> Wrap words to a specified length.
44
5+
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
6+
57
## Install
68

79
Install with [npm](https://www.npmjs.com/):
@@ -123,31 +125,26 @@ wrap(str, {cut: true});
123125

124126
## About
125127

126-
### Related projects
128+
<details>
129+
<summary><strong>Contributing</strong></summary>
127130

128-
* [common-words](https://www.npmjs.com/package/common-words): Updated list (JSON) of the 100 most common words in the English language. Useful for… [more](https://github.com/jonschlinkert/common-words) | [homepage](https://github.com/jonschlinkert/common-words "Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.")
129-
* [shuffle-words](https://www.npmjs.com/package/shuffle-words): Shuffle the words in a string and optionally the letters in each word using the… [more](https://github.com/jonschlinkert/shuffle-words) | [homepage](https://github.com/jonschlinkert/shuffle-words "Shuffle the words in a string and optionally the letters in each word using the Fisher-Yates algorithm. Useful for creating test fixtures, benchmarking samples, etc.")
130-
* [unique-words](https://www.npmjs.com/package/unique-words): Return the unique words in a string or array. | [homepage](https://github.com/jonschlinkert/unique-words "Return the unique words in a string or array.")
131-
* [wordcount](https://www.npmjs.com/package/wordcount): Count the words in a string. Support for english, CJK and Cyrillic. | [homepage](https://github.com/jonschlinkert/wordcount "Count the words in a string. Support for english, CJK and Cyrillic.")
131+
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
132132

133-
### Contributing
133+
</details>
134134

135-
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
135+
<details>
136+
<summary><strong>Running Tests</strong></summary>
136137

137-
### Contributors
138+
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
139+
140+
```sh
141+
$ npm install && npm test
142+
```
138143

139-
| **Commits** | **Contributor** |
140-
| --- | --- |
141-
| 43 | [jonschlinkert](https://github.com/jonschlinkert) |
142-
| 2 | [lordvlad](https://github.com/lordvlad) |
143-
| 2 | [hildjj](https://github.com/hildjj) |
144-
| 1 | [danilosampaio](https://github.com/danilosampaio) |
145-
| 1 | [2fd](https://github.com/2fd) |
146-
| 1 | [toddself](https://github.com/toddself) |
147-
| 1 | [wolfgang42](https://github.com/wolfgang42) |
148-
| 1 | [zachhale](https://github.com/zachhale) |
144+
</details>
149145

150-
### Building docs
146+
<details>
147+
<summary><strong>Building docs</strong></summary>
151148

152149
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
153150

@@ -157,26 +154,48 @@ To generate the readme, run the following command:
157154
$ npm install -g verbose/verb#dev verb-generate-readme && verb
158155
```
159156

160-
### Running tests
157+
</details>
161158

162-
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
159+
### Related projects
163160

164-
```sh
165-
$ npm install && npm test
166-
```
161+
You might also be interested in these projects:
162+
163+
* [common-words](https://www.npmjs.com/package/common-words): Updated list (JSON) of the 100 most common words in the English language. Useful for… [more](https://github.com/jonschlinkert/common-words) | [homepage](https://github.com/jonschlinkert/common-words "Updated list (JSON) of the 100 most common words in the English language. Useful for excluding these words from arrays.")
164+
* [shuffle-words](https://www.npmjs.com/package/shuffle-words): Shuffle the words in a string and optionally the letters in each word using the… [more](https://github.com/jonschlinkert/shuffle-words) | [homepage](https://github.com/jonschlinkert/shuffle-words "Shuffle the words in a string and optionally the letters in each word using the Fisher-Yates algorithm. Useful for creating test fixtures, benchmarking samples, etc.")
165+
* [unique-words](https://www.npmjs.com/package/unique-words): Returns an array of unique words, or the number of occurrences of each word in… [more](https://github.com/jonschlinkert/unique-words) | [homepage](https://github.com/jonschlinkert/unique-words "Returns an array of unique words, or the number of occurrences of each word in a string or list.")
166+
* [wordcount](https://www.npmjs.com/package/wordcount): Count the words in a string. Support for english, CJK and Cyrillic. | [homepage](https://github.com/jonschlinkert/wordcount "Count the words in a string. Support for english, CJK and Cyrillic.")
167+
168+
### Contributors
169+
170+
| **Commits** | **Contributor** |
171+
| --- | --- |
172+
| 47 | [jonschlinkert](https://github.com/jonschlinkert) |
173+
| 7 | [OlafConijn](https://github.com/OlafConijn) |
174+
| 2 | [aashutoshrathi](https://github.com/aashutoshrathi) |
175+
| 2 | [doowb](https://github.com/doowb) |
176+
| 2 | [lordvlad](https://github.com/lordvlad) |
177+
| 2 | [hildjj](https://github.com/hildjj) |
178+
| 1 | [danilosampaio](https://github.com/danilosampaio) |
179+
| 1 | [2fd](https://github.com/2fd) |
180+
| 1 | [leonard-thieu](https://github.com/leonard-thieu) |
181+
| 1 | [mohd-akram](https://github.com/mohd-akram) |
182+
| 1 | [toddself](https://github.com/toddself) |
183+
| 1 | [wolfgang42](https://github.com/wolfgang42) |
184+
| 1 | [zachhale](https://github.com/zachhale) |
167185

168186
### Author
169187

170188
**Jon Schlinkert**
171189

172-
* [github/jonschlinkert](https://github.com/jonschlinkert)
173-
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
190+
* [GitHub Profile](https://github.com/jonschlinkert)
191+
* [Twitter Profile](https://twitter.com/jonschlinkert)
192+
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
174193

175194
### License
176195

177-
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
196+
Copyright © 2023, [Jon Schlinkert](https://github.com/jonschlinkert).
178197
Released under the [MIT License](LICENSE).
179198

180199
***
181200

182-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 02, 2017._
201+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on July 18, 2023._

0 commit comments

Comments
 (0)
Please sign in to comment.