Update all dependencies (#9697)

* Update all dependencies

* Apply format to file

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Álvaro Mondéjar Rubio <mondejar1994@gmail.com>
This commit is contained in:
renovate[bot] 2023-10-13 01:28:34 +02:00 committed by GitHub
parent 6d6ea814c3
commit 043e3762fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

View File

@ -67,7 +67,7 @@ jobs:
- name: Update SDK Typescript definitions - name: Update SDK Typescript definitions
run: node ./scripts/release/update-sdk-ts-defs.js run: node ./scripts/release/update-sdk-ts-defs.js
- name: Commit version bump - name: Commit version bump
uses: stefanzweifel/git-auto-commit-action@v4.16.0 uses: stefanzweifel/git-auto-commit-action@v5.0.0
with: with:
commit_message: version bump commit_message: version bump
commit_user_name: 'github-actions[bot]' commit_user_name: 'github-actions[bot]'

View File

@ -60,10 +60,10 @@
"url": "https://opencollective.com/simple-icons" "url": "https://opencollective.com/simple-icons"
}, },
"devDependencies": { "devDependencies": {
"@inquirer/prompts": "3.1.1", "@inquirer/prompts": "3.2.0",
"chalk": "5.2.0", "chalk": "5.3.0",
"editorconfig-checker": "5.0.1", "editorconfig-checker": "5.1.1",
"esbuild": "0.17.19", "esbuild": "0.19.4",
"fake-diff": "1.0.0", "fake-diff": "1.0.0",
"get-relative-luminance": "1.0.0", "get-relative-luminance": "1.0.0",
"husky": "8.0.3", "husky": "8.0.3",
@ -73,14 +73,14 @@
"mocha": "10.2.0", "mocha": "10.2.0",
"named-html-entities-json": "1.0.0", "named-html-entities-json": "1.0.0",
"npm-run-all": "4.1.5", "npm-run-all": "4.1.5",
"prettier": "2.8.8", "prettier": "3.0.3",
"rimraf": "5.0.1", "rimraf": "5.0.5",
"svg-path-bbox": "1.2.4", "svg-path-bbox": "1.2.4",
"svg-path-segments": "1.0.0", "svg-path-segments": "1.0.0",
"svglint": "2.4.0", "svglint": "2.4.0",
"svgo": "3.0.2", "svgo": "3.0.2",
"svgpath": "2.6.0", "svgpath": "2.6.0",
"typescript": "5.1.6" "typescript": "5.2.2"
}, },
"scripts": { "scripts": {
"build": "node scripts/build/package.js", "build": "node scripts/build/package.js",

View File

@ -119,7 +119,7 @@ export const htmlFriendlyToTitle = (htmlFriendlyTitle) =>
.replace(/&#([0-9]+);/g, (_, num) => String.fromCodePoint(parseInt(num))) .replace(/&#([0-9]+);/g, (_, num) => String.fromCodePoint(parseInt(num)))
.replace( .replace(
/&(quot|amp|lt|gt);/g, /&(quot|amp|lt|gt);/g,
(_, ref) => ({ quot: '"', amp: '&', lt: '<', gt: '>' }[ref]), (_, ref) => ({ quot: '"', amp: '&', lt: '<', gt: '>' })[ref],
); );
/** /**