mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
01f4bb8c78
* Rename PostCSS files to `.pcss` * Make Stylelint happy * Delint * Rename new files too * delint * Fix bad comment placement
15 lines
415 B
Bash
Executable file
15 lines
415 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
cd `dirname $0`
|
|
|
|
{
|
|
echo "// autogenerated by rethemendex.sh"
|
|
|
|
# we used to have exclude /themes from the find at this point.
|
|
# as themes are no longer a spurious subdirectory of css/, we don't
|
|
# need it any more.
|
|
find . -iname _\*.pcss | fgrep -v _components.pcss | LC_ALL=C sort |
|
|
while read i; do
|
|
echo "@import \"$i\";"
|
|
done
|
|
} > _components.pcss
|