Skip to content

Commit

Permalink
fix: update package.json and index.ts files
Browse files Browse the repository at this point in the history
  • Loading branch information
code-xhyun committed Apr 13, 2024
1 parent e575d15 commit 37f15ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"config": {
"blanket": {
"pattern": "lib",
"pattern": "src",
"data-cover-never": "node_modules"
}
},
Expand Down
8 changes: 4 additions & 4 deletions src/pulse/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,16 +243,16 @@ class Pulse extends EventEmitter {
return this.bindMethod('drain', drain);
}

get mongo(): MongoMethod {
return this.bindMethod('mongo', mongo);
}

/**
***************************************
* Private methods
* *************************************
*/

private get mongo(): MongoMethod {
return this.bindMethod('mongo', mongo);
}

private get database(): DatabaseMethod {
return this.bindMethod('database', database);
}
Expand Down

0 comments on commit 37f15ae

Please sign in to comment.