1
0
mirror of https://github.com/konpa/devicon.git synced 2025-08-15 02:56:12 +02:00

fix local npm dev script

This commit is contained in:
Snailedlt
2024-01-18 18:29:42 +01:00
parent d4c5cf4693
commit a6a59d559c
2 changed files with 9667 additions and 9318 deletions

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"
} }