Skip to content

Commit

Permalink
fix(deps): Bumped deps
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Apr 12, 2024
1 parent 0f6a1cc commit 53ccd8b
Show file tree
Hide file tree
Showing 4 changed files with 433 additions and 431 deletions.
2 changes: 1 addition & 1 deletion .ncurc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
upgrade: true,
reject: ['jsdoc']
reject: ['jsdoc', 'eslint', 'grunt-eslint']
};
9 changes: 9 additions & 0 deletions examples/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,15 @@ c.connect()
await listLast(c);

lock.release();

console.log('PRE_IDLE', Date.now());
setTimeout(() => {
c.noop();
}, 10 * 1000);
await c.idle();
console.log('AFTER_IDLE', Date.now());
await c.noop();

/*
c.messageFlagsAdd('1:3', ['foo'], { uid: true, useLabels: true });
Expand Down
Loading

0 comments on commit 53ccd8b

Please sign in to comment.