1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-18 20:31:31 +02:00

Merge pull request #2118 from Snailedlt/some-small-fixes

Some small fixes
This commit is contained in:
Jørgen Kalsnes Hagen
2024-02-16 20:21:26 +01:00
committed by GitHub
3 changed files with 9881 additions and 9531 deletions

View File

@@ -74,7 +74,8 @@
"title": "The official/main hexadecimal color of the logo. [Case insensitive]", "title": "The official/main hexadecimal color of the logo. [Case insensitive]",
"description": "Pattern example: #FFFFFF", "description": "Pattern example: #FFFFFF",
"type": "string", "type": "string",
"pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$" "pattern": "^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$",
"format": "color"
}, },
"aliases": { "aliases": {
"title": "Keeps track of the aliases for the font versions ONLY.", "title": "Keeps track of the aliases for the font versions ONLY.",

729
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,7 +9,9 @@
"optimize-svg": "gulp optimizeSvg", "optimize-svg": "gulp optimizeSvg",
"bump": "gulp bumpVersion", "bump": "gulp bumpVersion",
"build-icons": "python3 ./.github/scripts/icomoon_build_githubless.py ./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json ./devicon.json ./icons ./ --headless", "build-icons": "python3 ./.github/scripts/icomoon_build_githubless.py ./.github/scripts/build_assets/geckodriver-v0.32.2-linux64/geckodriver ./icomoon.json ./devicon.json ./icons ./ --headless",
"dev": "python3 -m http.server 8000 -d ./docs/" "dev": "concurrently \"npm:open-browser\" \"npm:start-local-server\"",
"start-local-server": "python3 -m http.server 8000",
"open-browser": "node -e \"import('open').then(pkg => pkg.default('http://localhost:8000/docs'))\""
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@@ -28,10 +30,12 @@
}, },
"homepage": "https://devicon.dev", "homepage": "https://devicon.dev",
"devDependencies": { "devDependencies": {
"concurrently": "^8.2.2",
"gulp": "^4.0.2", "gulp": "^4.0.2",
"gulp-footer": "^2.0.2", "gulp-footer": "^2.0.2",
"gulp-sass": "^5.0.0", "gulp-sass": "^5.0.0",
"gulp-svgmin": "^3.0.0", "gulp-svgmin": "^3.0.0",
"open": "^10.0.3",
"sass": "^1.26.10", "sass": "^1.26.10",
"yargs": "^17.0.0" "yargs": "^17.0.0"
} }