Skip to content

Commit 4d994a6

Browse files
committed
Finalize v3 dependency updates (#596)
1 parent eb2f597 commit 4d994a6

4 files changed

Lines changed: 60 additions & 82 deletions

File tree

packages/authentication/package-lock.json

Lines changed: 55 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/authentication/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@
6262
"uuid": "^3.1.0"
6363
},
6464
"devDependencies": {
65+
"@feathersjs/authentication-jwt": "^1.0.0-pre.1",
66+
"@feathersjs/authentication-local": "^1.0.0-pre.1",
6567
"@feathersjs/configuration": "^1.0.0-pre.1",
6668
"@feathersjs/express": "^1.0.0-pre.4",
6769
"@feathersjs/feathers": "^3.0.0-pre.3",
@@ -70,9 +72,6 @@
7072
"body-parser": "^1.15.2",
7173
"chai": "^4.1.0",
7274
"chai-uuid": "^1.0.6",
73-
"feathers-authentication-jwt": "^0.3.0",
74-
"feathers-authentication-local": "^0.4.0",
75-
"feathers-hooks": "^2.0.0",
7675
"feathers-memory": "^1.0.0",
7776
"istanbul": "^1.1.0-alpha.1",
7877
"jshint": "^2.9.3",

packages/authentication/test/fixtures/server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const primus = require('@feathersjs/primus');
77
const memory = require('feathers-memory');
88
const bodyParser = require('body-parser');
99
const errorHandler = require('@feathersjs/errors/handler');
10-
const local = require('feathers-authentication-local');
11-
const jwt = require('feathers-authentication-jwt');
10+
const local = require('@feathersjs/authentication-local');
11+
const jwt = require('@feathersjs/authentication-jwt');
1212
const auth = require('../../lib/index');
1313

1414
const User = {

packages/authentication/test/service.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('/authentication service', () => {
3333

3434
it('throws an error when path option is missing', () => {
3535
expect(() => {
36-
feathers().configure(authentication({
36+
express(feathers()).configure(authentication({
3737
secret: 'dummy',
3838
path: null
3939
}));

0 commit comments

Comments
 (0)