mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
9 lines
No EOL
286 B
Bash
Executable file
9 lines
No EOL
286 B
Bash
Executable file
#!/bin/bash
|
|
if [ -d "build" ]; then
|
|
cd build
|
|
echo "\\033[1;36mcompiling client scripts...\\033[0m"
|
|
rm -f "client.min.js.gz"
|
|
../node_modules/requirejs/bin/r.js -o build.js > /dev/null \
|
|
&& gzip -c client.min.js > client.min.js.gz && echo "\\033[1;32mdone.\\033[0m"
|
|
cd ..
|
|
fi |