@rmacshane-lw/slugify-lite 5.0.2 → 5.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 (3) hide show
  1. package/README.md +1 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -24,5 +24,5 @@ console.log(slug); # hello-world
24
24
  import { version } from '@rmacshane-lw/slugify-lite';
25
25
 
26
26
  const version = version();
27
- console.log(version); # 5.0.2
27
+ console.log(version); # 5.1.0
28
28
  ```
package/index.js CHANGED
@@ -7,4 +7,4 @@ export const slugify = (text) =>
7
7
  .replace(/\s+/g, '-') // collapse whitespace and replace by -
8
8
  .replace(/-+/g, '-'); // collapse dashes
9
9
 
10
- export const version = () => '5.0.2';
10
+ export const version = () => '5.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rmacshane-lw/slugify-lite",
3
- "version": "5.0.2",
3
+ "version": "5.1.0",
4
4
  "description": "A tiny function to slugify strings for URLs - This is a test package for me to test npm version management - Use at your own risk!",
5
5
  "main": "index.js",
6
6
  "type": "module",