From da1b5ab51e55a57aab1d276aac9378c10e387ace Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Fri, 19 Jan 2024 12:46:11 +0100 Subject: [PATCH] fix: cose --- package.json | 14 +++++++------- src/iconsDefinition.ts | 2 ++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index aa0b751..c4fe358 100644 --- a/package.json +++ b/package.json @@ -60,17 +60,17 @@ "release:major": "git pull && standard-version --release-as major && git push --follow-tags" }, "devDependencies": { - "@types/fs-extra": "8.0.1", - "@types/node": "^13.1.6", + "@types/fs-extra": "11.0.4", + "@types/node": "^20.11.5", "npm-run-all": "4.1.5", - "tslint": "5.18.0", + "tslint": "5.20.1", "tslint-config-prettier": "1.18.0", - "typescript": "3.3.1", + "typescript": "5.3.3", "vscode": "1.1.35" }, "dependencies": { - "fs-extra": "8.1.0", - "prettier": "1.19.1", - "standard-version": "9.1.1" + "fs-extra": "11.2.0", + "prettier": "3.2.4", + "standard-version": "9.5.0" } } diff --git a/src/iconsDefinition.ts b/src/iconsDefinition.ts index 0f3ffb6..dbac8b2 100644 --- a/src/iconsDefinition.ts +++ b/src/iconsDefinition.ts @@ -17,6 +17,8 @@ const iconsList: string[] = fs.readdirSync(paths.svgs).map(icon => { if (icon.match(/\.svg$/i)) { return removeFileExtension(icon); } + + return ''; }); /**