Skip to content

Commit 9d767bf

Browse files
greenkeeper[bot]daffl
authored andcommitted
chore(package): Update @types/jsonwebtoken in group default to the latest version 🚀 (#1781)
1 parent 0b05f0b commit 9d767bf

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

packages/authentication/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"@feathersjs/errors": "^4.4.3",
4747
"@feathersjs/feathers": "^4.4.3",
4848
"@feathersjs/transport-commons": "^4.4.3",
49-
"@types/jsonwebtoken": "8.3.5",
49+
"@types/jsonwebtoken": "^8.3.6",
5050
"debug": "^4.1.1",
5151
"jsonwebtoken": "^8.5.1",
5252
"lodash": "^4.17.15",

packages/authentication/test/core.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ describe('authentication/core', () => {
302302
};
303303

304304
try {
305+
// @ts-ignore
305306
await auth.createAccessToken({}, overrides);
306307
assert.fail('Should never get here');
307308
} catch (error) {

packages/transport-commons/src/channels/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ export function channels () {
9090
if (!result) {
9191
return;
9292
}
93-
93+
9494
const results = Array.isArray(result) ? compact(flattenDeep(result)) : [result];
9595
const channel = new CombinedChannel(results);
96-
96+
9797
if (channel && channel.length > 0) {
9898
app.emit('publish', event, channel, hook, data);
9999
} else {

packages/transport-commons/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export class Service {
131131
off (name: string, ...args: any[]) {
132132
if (typeof this.connection.off === 'function') {
133133
const result = this.connection.off(`${this.path} ${name}`, ...args);
134-
134+
135135
return result === this.connection ? this : result;
136136
} else if (args.length === 0) {
137137
// @ts-ignore

0 commit comments

Comments
 (0)