Upgrade dependencies

This commit is contained in:
Calvin Montgomery 2018-02-15 19:58:33 -08:00
parent 03f30a82b9
commit 49661a95ab
2 changed files with 18 additions and 17 deletions

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery", "author": "Calvin Montgomery",
"name": "CyTube", "name": "CyTube",
"description": "Online media synchronizer and chat", "description": "Online media synchronizer and chat",
"version": "3.53.4", "version": "3.54.0",
"repository": { "repository": {
"url": "http://github.com/calzoneman/sync" "url": "http://github.com/calzoneman/sync"
}, },
@ -10,39 +10,38 @@
"dependencies": { "dependencies": {
"@calzoneman/express-babel-decorators": "^1.0.0", "@calzoneman/express-babel-decorators": "^1.0.0",
"@calzoneman/jsli": "^2.0.1", "@calzoneman/jsli": "^2.0.1",
"bcrypt": "^0.8.5", "bcrypt": "^1.0.3",
"bluebird": "^2.10.1", "bluebird": "^3.5.1",
"body-parser": "^1.14.0", "body-parser": "^1.18.2",
"cheerio": "^0.19.0", "cheerio": "^1.0.0-rc.2",
"clone": "^1.0.2", "clone": "^2.1.1",
"compression": "^1.5.2", "compression": "^1.5.2",
"cookie-parser": "^1.4.0", "cookie-parser": "^1.4.0",
"create-error": "^0.3.1", "create-error": "^0.3.1",
"csrf": "^3.0.0", "csrf": "^3.0.0",
"cytube-mediaquery": "git://github.com/CyTube/mediaquery", "cytube-mediaquery": "git://github.com/CyTube/mediaquery",
"cytubefilters": "git://github.com/calzoneman/cytubefilters#67c7c69a", "cytubefilters": "git://github.com/calzoneman/cytubefilters#67c7c69a",
"express": "^4.13.3", "express": "^4.16.2",
"express-minify": "^0.1.6", "express-minify": "^1.0.0",
"graceful-fs": "^4.1.2", "graceful-fs": "^4.1.2",
"http-errors": "^1.3.1",
"json-typecheck": "^0.1.3", "json-typecheck": "^0.1.3",
"knex": "^0.13.0", "knex": "^0.14.3",
"lodash": "^4.13.1", "lodash": "^4.17.5",
"morgan": "^1.6.1", "morgan": "^1.6.1",
"mysql": "^2.9.0", "mysql": "^2.9.0",
"nodemailer": "^4.1.1", "nodemailer": "^4.4.2",
"prom-client": "^10.0.2", "prom-client": "^10.0.2",
"proxy-addr": "^1.1.4", "proxy-addr": "^2.0.2",
"pug": "^2.0.0-beta3", "pug": "^2.0.0-beta3",
"q": "^1.4.1", "q": "^1.4.1",
"redis": "^2.4.2", "redis": "^2.4.2",
"sanitize-html": "^1.14.1", "sanitize-html": "^1.14.1",
"serve-static": "^1.10.0", "serve-static": "^1.13.2",
"socket.io": "^2.0.3", "socket.io": "^2.0.3",
"source-map-support": "^0.4.0", "source-map-support": "^0.5.3",
"sprintf-js": "^1.0.3", "sprintf-js": "^1.0.3",
"toml": "^2.3.0", "toml": "^2.3.0",
"uuid": "^2.0.1", "uuid": "^3.2.1",
"yamljs": "^0.2.8" "yamljs": "^0.2.8"
}, },
"scripts": { "scripts": {

View File

@ -187,8 +187,10 @@ module.exports = {
fs.mkdirSync(cacheDir); fs.mkdirSync(cacheDir);
} }
app.use((req, res, next) => { app.use((req, res, next) => {
res.minifyOptions = res.minifyOptions || {};
if (/\.user\.js/.test(req.url)) { if (/\.user\.js/.test(req.url)) {
res._no_minify = true; res.minifyOptions.minify = false;
} }
next(); next();