Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Updates deps, include junk-bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
meschbach committed Feb 24, 2020
1 parent 1aa4aec commit f9e7b3f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion control-http.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let morgan = require( 'morgan' );
const expressOpenTracing = require("express-opentracing").default;

// Internal dependencies
const Future = require("junk-bucket/future");
const {Future} = require("junk-bucket/future");
const {make_async} = require("junk-bucket/express");

const jwt = require("jsonwebtoken");
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.9",
"mocha": "7.0.0",
"mocha": "7.0.1",
"nyc": "15.0.0",
"selfsigned": "1.10.7"
},
Expand All @@ -26,13 +26,13 @@
"express": "4.17.1",
"express-opentracing": "git+https://github.com/meschbach/javascript-express.git#production",
"http-proxy": "1.18.0",
"jaeger-client": "^3.17.1",
"jaeger-client": "3.17.2",
"jsonwebtoken": "8.5.1",
"junk-bucket": "1.3.0",
"junk-bucket": "1.4.1",
"morgan": "1.9.1",
"opentracing": "^0.14.4",
"prom-client": "11.5.3",
"request": "2.88.0",
"prom-client": "12.0.0",
"request": "2.88.2",
"request-promise-native": "1.0.8",
"ws": "7.2.1",
"yargs": "15.1.0"
Expand Down
2 changes: 1 addition & 1 deletion promise-requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const request = require( 'request' );
const requestPromise = require("request-promise-native");

// Internal Dependencies
const Future = require( "junk-bucket/future");
const {Future} = require( "junk-bucket/future");

//TODO: Most of these should be replaced with request-as-promised

Expand Down
2 changes: 1 addition & 1 deletion service/simple-proxy.integ.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let expect = chai.expect
let express = require( 'express' )
let morgan = require( 'morgan' )

const Future = require("junk-bucket/future");
const {Future} = require("junk-bucket/future");

const {Irrigation} = require("../test/harness");

Expand Down
2 changes: 1 addition & 1 deletion service/tls.integ.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const {Irrigation,CallCountingService} = require("../test/harness");
const Future = require("junk-bucket/future");
const {Future} = require("junk-bucket/future");
const selfsigned = require('selfsigned');
const url = require('url');
const tls = require("tls");
Expand Down
2 changes: 1 addition & 1 deletion service/websocket-proxy.integ.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let delta = require( "../index" );

const {Context} = require("junk-bucket/context");
const {promiseEvent} = require("junk-bucket/future");
const Future = require("junk-bucket/future");
const {Future} = require("junk-bucket/future");

const {createTestLogger} = require("./test-junk");

Expand Down

0 comments on commit f9e7b3f

Please sign in to comment.