From ff662a4bc6e1ae1b78894bb357760c57d3ce8f7f Mon Sep 17 00:00:00 2001 From: fratzinger <22286818+fratzinger@users.noreply.github.com> Date: Wed, 3 Apr 2024 14:10:04 +0200 Subject: [PATCH] fix: add missing ' --- package-lock.json | 2 -- packages/transport-commons/test/socket/utils.test.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 613869c8e4..d10c7a19ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24519,7 +24519,6 @@ "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", - "lodash": "^4.17.21", "qs": "^6.12.0" }, "devDependencies": { @@ -24527,7 +24526,6 @@ "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", - "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", "@types/node": "^20.11.26", "@types/tough-cookie": "^4.0.5", diff --git a/packages/transport-commons/test/socket/utils.test.ts b/packages/transport-commons/test/socket/utils.test.ts index 56309b0c81..8463d6698f 100644 --- a/packages/transport-commons/test/socket/utils.test.ts +++ b/packages/transport-commons/test/socket/utils.test.ts @@ -2,7 +2,7 @@ import assert from 'assert' import { EventEmitter } from 'events' import { feathers, Application, Params, RealTimeConnection } from '@feathersjs/feathers' import { NotAuthenticated } from '@feathersjs/errors' -import isPlainObject from 'lodash/isPlainObject +import isPlainObject from 'lodash/isPlainObject' import { routing } from '../../src/routing' import { normalizeError, getDispatcher, runMethod } from '../../src/socket/utils'