Some updates on the info page.

This commit is contained in:
Lars Jung 2013-08-16 16:22:23 +02:00
parent a296311b88
commit cec6ca2e6e
3 changed files with 48 additions and 31 deletions

View file

@ -85,16 +85,18 @@ module.exports = function (make) {
make.target('build', ['check-version'], 'build all updated files').sync(function () {
var header = '/* ' + pkg.name + ' ' + pkg.version + ' - ' + pkg.url + ' */'
$(src + ': _h5ai/client/js/*.js')
.modified(mapSrc, $(src + ': _h5ai/client/js/**'))
.includify()
.uglifyjs()
.uglifyjs({header: header})
.WRITE(mapSrc);
$(src + ': _h5ai/client/css/*.less')
.modified(mapSrc, $(src + ': _h5ai/client/css/**'))
.less()
.cssmin()
.cssmin({header: header})
.WRITE(mapSrc);
$(src + ': **/*.jade')