mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-25 11:18:35 +01:00
13 lines
269 B
Bash
13 lines
269 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
SRC='./src/images'
|
||
|
OUT='./src/components/svg'
|
||
|
|
||
|
printf "Creating SVG components...\\n\\n"
|
||
|
|
||
|
# Usage: svgr [-d out-dir] [src-dir]
|
||
|
./node_modules/@svgr/cli/bin/svgr --icon -d $OUT $SRC
|
||
|
|
||
|
printf "\\n🎉 Successfully created SVG components\\n\\n"
|