Comparing version 8.2.2 to 8.2.3
@@ -0,1 +1,8 @@ | ||
## [8.2.3](https://github.com/Trott/slug/compare/v8.2.2...v8.2.3) (2023-07-18) | ||
### Bug Fixes | ||
* fix output example in README ([#393](https://github.com/Trott/slug/issues/393)) ([3165852](https://github.com/Trott/slug/commit/3165852d527737bbfaac8ab3f18b2868665024b6)) | ||
## [8.2.2](https://github.com/Trott/slug/compare/v8.2.1...v8.2.2) (2022-10-02) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "slug", | ||
"description": "slugifies even utf-8 chars!", | ||
"version": "8.2.2", | ||
"version": "8.2.3", | ||
"homepage": "https://github.com/Trott/slug", | ||
@@ -26,3 +26,3 @@ "author": "dodo (https://github.com/dodo)", | ||
"scripts": { | ||
"test": "standard && mocha test/*.mjs && nyc --reporter none mocha test/**/*.js && karma start --single-run --browsers ChromeHeadless,FirefoxHeadless .karma.config.js && nyc report --reporter=text --reporter=html && nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100", | ||
"test": "standard && mocha test/*.mjs && nyc --reporter none mocha test/**/*.js && karma start --single-run --browsers ChromeHeadless .karma.config.js && nyc report --reporter=text --reporter=html && nyc check-coverage --lines 100 --branches 100 --statements 100 --functions 100", | ||
"benchmark": "node benchmark/benchmark.js" | ||
@@ -38,3 +38,2 @@ }, | ||
"karma-coverage": "^2.1.1", | ||
"karma-firefox-launcher": "^2.0.0", | ||
"karma-jasmine": "^5.0.0", | ||
@@ -44,4 +43,4 @@ "karma-mocha": "^2.0.1", | ||
"nyc": "^15.0.1", | ||
"semantic-release": "^19.0.1", | ||
"standard": "^17.0.0" | ||
"semantic-release": "^21.0.0", | ||
"standard": "^17.1.0" | ||
}, | ||
@@ -48,0 +47,0 @@ "license": "MIT", |
@@ -40,3 +40,3 @@ # [slug](https://github.com/Trott/slug) | ||
print(slug('I ♥ UNICODE')) | ||
// > i_unicode | ||
// > i-unicode | ||
@@ -43,0 +43,0 @@ print(slug('Telephone-Number')) // lower case by default |
34718
13