mirror of
https://github.com/zulip/zulip.git
synced 2026-07-06 21:18:58 +08:00
There were some notable bug fixes between those versions. We are still far behind the current version (1.3.0). For the node stuff, I used npm update. Then for static/third/handlebars/handlebars.runtime.js, I copied the node version then added back the copyright. (imported from commit 59bcd2c52540ff88bba2f90cced809cfcb8cd92b)
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
rm dist/*
|
|
|
|
rake
|
|
|
|
for x in dist/*.js; do
|
|
x=${x%.*}
|
|
uglifyjs -c -m -- $x.js > $x.min.js
|
|
gzip -c $x.min.js > $x.min.js.gz
|
|
done
|
|
|
|
ls -l dist | awk '{ print $9 " " $5 }'
|