Update webapp dependencies

This commit is contained in:
Jan Dvorak
2021-07-12 22:54:39 +02:00
parent 52c956d4f2
commit e245fd4992
2 changed files with 11 additions and 11 deletions

View File

@@ -1,17 +1,17 @@
Package.describe({
summary: "Serves a Meteor app over HTTP",
version: '1.11.1'
version: '1.12.0-beta240.0'
});
Npm.depends({"basic-auth-connect": "1.0.0",
"cookie-parser": "1.4.3",
connect: "3.6.5",
compression: "1.7.1",
errorhandler: "1.5.0",
parseurl: "1.3.2",
send: "0.16.1",
"stream-to-string": "1.1.0",
"qs": "6.4.0",
"cookie-parser": "1.4.5",
connect: "3.7.0",
compression: "1.7.4",
errorhandler: "1.5.1",
parseurl: "1.3.3",
send: "0.17.1",
"stream-to-string": "1.2.0",
"qs": "6.10.1",
useragent: "2.3.0",
"@vlasky/whomst": "0.1.6"});

View File

@@ -68,7 +68,7 @@ var sha1 = function (contents) {
return hash.digest('hex');
};
function shouldCompress(req, res) {
function shouldCompress(req, res) {
if (req.headers['x-no-compression']) {
// don't compress responses with this request header
return false;
@@ -76,7 +76,7 @@ var sha1 = function (contents) {
// fallback to standard filter function
return compress.filter(req, res);
};
}
// #BrowserIdentification
//