mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-03 04:22:31 +01:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
16 lines
444 B
Bash
Executable File
16 lines
444 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 | fgrep -v _compound.pcss | LC_ALL=C sort |
|
|
while read i; do
|
|
echo "@import \"$i\";"
|
|
done
|
|
} > _components.pcss
|