blob: 39091fe3cedc9c070e989d749d045383db21af59 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# A shell script that combines the javascript files needed by jstemplate into
# a single file.
SRCS="base.js dom.js util.js jstemplate.js"
OUT="jstemplate_compiled.js"
# TODO(tc): We should use an open source JS compressor/compiler to reduce
# the size of our JS code.
cat $SRCS > $OUT
|