9 lines
189 B
Bash
Executable File
9 lines
189 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BASEDIR="$( cd "$( dirname "$0" )" && pwd )"
|
|
cd "${BASEDIR}"
|
|
|
|
for theme in edge gruvbox; do
|
|
lessc -x "src/${theme}-dark.less" > "dist/theme-${theme}-dark.css"
|
|
done
|