Skip to content
This repository has been archived by the owner on Jul 9, 2022. It is now read-only.

Commit

Permalink
Updated bluebird to version 3 (#798)
Browse files Browse the repository at this point in the history
  • Loading branch information
barslev committed Mar 23, 2020
1 parent e60b879 commit 3227d2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"author": "Avery, David, Maude, Benjamin",
"license": "MIT",
"dependencies": {
"bluebird": "^2.9.27",
"bluebird": "^3.0.0",
"cheerio": "^0.22.0",
"mqtt": "^3.0.0",
"npmlog": "^1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion utils.js
@@ -1,7 +1,7 @@
"use strict";

var bluebird = require("bluebird");
var request = bluebird.promisify(require("request").defaults({ jar: true }));
var request = bluebird.promisify(require("request").defaults({ jar: true }), {multiArgs: true});
var stream = require("stream");
var log = require("npmlog");

Expand Down

0 comments on commit 3227d2e

Please sign in to comment.