slugcopy 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@ Slugify strings and copy to clipboard
4
4
  ## Install
5
5
 
6
6
  ```
7
- $ npm install --global slugcopy
7
+ npm install --global slugcopy
8
8
  ```
9
9
 
10
10
  ## Usage
@@ -20,6 +20,8 @@ $ slugcopy --help
20
20
  --no-lowercase Don’t make the slug lowercase [Default: true]
21
21
  --no-decamelize Don’t convert camelCase to separate words [Default: true]
22
22
  --preserve-leading-underscore If your string starts with an underscore, it will be preserved in the slugified string [Default: false]
23
+ --no-copy Don't copy the slug to the clipboard [Default: false]
24
+
23
25
 
24
26
  Examples
25
27
  $ slugcopy Déjà Vu!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slugcopy",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Slugify strings and copy to clipboard",
5
5
  "main": "cli.js",
6
6
  "scripts": {