Skip to content

Commit 233ca73

Browse files
committed
Development packages have been upgraded to their latest versions
1 parent 8cf7320 commit 233ca73

File tree

6 files changed

+455
-700
lines changed

6 files changed

+455
-700
lines changed

dist/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/// <reference types="node" />
2+
/// <reference types="node" />
23
import { Socket } from 'net';
34
import { CommandExecution, CommandHandler, ConnectOpts, Job, CtorOpts, PutOpts } from './types';
45
export declare class JackdClient {

dist/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types.d.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/// <reference types="node" />
2+
/// <reference types="node" />
23
import EventEmitter = require('events');
3-
export declare type CommandHandler<T> = (chunk: Buffer) => Promise<T>;
4+
export type CommandHandler<T> = (chunk: Buffer) => Promise<T>;
45
export declare class CommandExecution<T> {
56
handlers: CommandHandler<T | void>[];
67
emitter: EventEmitter;
@@ -28,9 +29,9 @@ export interface ReleaseOpts {
2829
export interface PauseTubeOpts {
2930
delay?: number;
3031
}
31-
export declare type PutArgs = [payload: Buffer | string | object, options?: PutOpts];
32-
export declare type ReleaseArgs = [jobId: string, options?: ReleaseOpts];
33-
export declare type PauseTubeArgs = [tubeId: string, options?: PauseTubeOpts];
34-
export declare type JobArgs = [jobId: string];
35-
export declare type TubeArgs = [tubeId: string];
32+
export type PutArgs = [payload: Buffer | string | object, options?: PutOpts];
33+
export type ReleaseArgs = [jobId: string, options?: ReleaseOpts];
34+
export type PauseTubeArgs = [tubeId: string, options?: PauseTubeOpts];
35+
export type JobArgs = [jobId: string];
36+
export type TubeArgs = [tubeId: string];
3637
//# sourceMappingURL=types.d.ts.map

dist/types.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
},
2525
"homepage": "https://github.com/getjackd/jackd#readme",
2626
"devDependencies": {
27-
"@types/node": "^17.0.5",
28-
"chai": "^4.2.0",
29-
"eslint": "^8.5.0",
30-
"mocha": "^6.2.2",
31-
"typescript": "^4.5.4",
32-
"yaml": "^1.3.2"
27+
"@types/node": "^20.6.0",
28+
"chai": "^4.3.8",
29+
"eslint": "^8.49.0",
30+
"mocha": "^10.2.0",
31+
"typescript": "^5.2.2",
32+
"yaml": "^2.3.2"
3333
}
3434
}

0 commit comments

Comments
 (0)