Skip to content

Commit

Permalink
Merge pull request #5 from quintoandar/update-base-kafka-lib
Browse files Browse the repository at this point in the history
Use official base kafka lib
  • Loading branch information
thspinto authored Jun 6, 2018
2 parents d0c2e5b + e85c9b0 commit 2590134
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 18 deletions.
39 changes: 25 additions & 14 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"name": "quintoandar-kafka",
"version": "0.0.11",
"version": "0.0.12",
"description": "Default Kafka NodeJS lib for QuintoAndar",
"main": "src/main.js",
"types": "types/index.d.ts",
"dependencies": {
"kafka-node": "git+https://github.com/thspinto/kafka-node.git#v2.6.2-rc1",
"kafka-node": "2.6.1",
"lodash": "^4.17.10",
"quintoandar-logger": "git+https://github.com/quintoandar/node-logger.git#1.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/kafka-node": "^2.0.6",
"@types/node": "^10.0.0",
"EventEmitter": "^1.0.0",
"eslint": "^4.7.2",
Expand Down
4 changes: 2 additions & 2 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Writable } from 'stream';
import { ConsumerGroupOptions, KafkaClientOptions, HighLevelConsumerOptions } from 'kafka-node';
import { ConsumerGroupOptions, KafkaClientOptions } from 'kafka-node';

export { ConsumerGroupOptions, KafkaClientOptions, HighLevelConsumerOptions } from 'kafka-node';
export { ConsumerGroupOptions, KafkaClientOptions } from 'kafka-node';

export interface KafkaConsumerOptions {
configs: ConsumerGroupOptions;
Expand Down

0 comments on commit 2590134

Please sign in to comment.