Moved all the hooks into a hooks directory

This commit is contained in:
Egil Moeller 2012-02-25 17:23:44 +01:00
parent 6754eed9b4
commit 7b42987407
11 changed files with 36 additions and 36 deletions

View file

@ -0,0 +1,6 @@
var minify = require('../../utils/Minify');
exports.expressCreateServer = function (hook_name, args, cb) {
//serve minified files
args.app.get('/minified/:filename', minify.minifyJS);
}