We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a415fe commit 7b6b5cdCopy full SHA for 7b6b5cd
2 files changed
packages/pubsub/package.json
@@ -56,7 +56,6 @@
56
"extend": "^3.0.0",
57
"google-gax": "^0.6.0",
58
"is": "^3.0.1",
59
- "lodash": "^4.15.0",
60
"modelo": "^4.2.0",
61
"propprop": "^0.3.0"
62
},
packages/pubsub/src/v1/index.js
@@ -19,7 +19,6 @@ var publisherApi = require('./publisher_api');
19
var subscriberApi = require('./subscriber_api');
20
var extend = require('extend');
21
var gax = require('google-gax');
22
-var lodash = require('lodash');
23
24
function v1(options) {
25
options = extend({
@@ -33,7 +32,5 @@ function v1(options) {
33
32
}
34
35
v1.SERVICE_ADDRESS = publisherApi.SERVICE_ADDRESS;
36
-v1.ALL_SCOPES = lodash.union(
37
- publisherApi.ALL_SCOPES,
38
- subscriberApi.ALL_SCOPES);
+v1.ALL_SCOPES = publisherApi.ALL_SCOPES;
39
module.exports = v1;
0 commit comments