Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#251)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Parbez <imranbarbhuiya.fsd@gmail.com>
  • Loading branch information
renovate[bot] and imranbarbhuiya authored Feb 25, 2024
1 parent c6c6f77 commit 03fb692
Show file tree
Hide file tree
Showing 4 changed files with 281 additions and 290 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"root": true,
"extends": ["mahir/common", "mahir/node", "mahir/typescript", "mahir/prettier", "mahir/tsdoc"],
"extends": ["mahir/common", "mahir/node", "mahir/typescript", "mahir/tsdoc"],
"ignorePatterns": ["**/dist/*"],
"rules": {
"no-console": "error",
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build && pinst --disable",
"postinstall": "husky install .github/husky",
"postinstall": "husky .github/husky",
"postpack": "pinst --enable"
},
"keywords": [
Expand All @@ -40,17 +40,17 @@
"unidecode": "^0.1.8"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@favware/cliff-jumper": "^2.2.3",
"@favware/npm-deprecate": "^1.0.7",
"@types/jsdom": "^21.1.6",
"@types/unidecode": "^0.1.3",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/coverage-v8": "^1.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-mahir": "^0.0.38",
"husky": "^9.0.10",
"eslint": "^8.57.0",
"eslint-config-mahir": "^0.0.43",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"pinst": "^3.0.0",
Expand All @@ -59,7 +59,7 @@
"tsup": "^8.0.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
"vitest": "^1.3.1"
},
"files": [
"dist/**/*.js*",
Expand Down
4 changes: 1 addition & 3 deletions src/lib/isCancerous.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@
* @param str - string to check
* @returns true if the string contains zalgo characters
*/
export const isCancerous = (str: string) => {
return /[^\p{ASCII}]/u.test(str);
};
export const isCancerous = (str: string) => /[^\p{ASCII}]/u.test(str);
Loading

0 comments on commit 03fb692

Please sign in to comment.