@feathersjs/authentication-local 5.0.0-pre.17 → 5.0.0-pre.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -0
  3. package/package.json +15 -15
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
7
+
8
+ **Note:** Version bump only for package @feathersjs/authentication-local
9
+
10
+
11
+
12
+
13
+
6
14
  # [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
7
15
 
8
16
 
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
4
  [![Download Status](https://img.shields.io/npm/dm/@feathersjs/authentication-local.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/authentication-local)
5
+ [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/qa8kez8QBx)
5
6
 
6
7
  > Local username and password authentication strategy for Feathers authentication
7
8
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/authentication-local",
3
3
  "description": "Local authentication strategy for @feathers/authentication",
4
- "version": "5.0.0-pre.17",
4
+ "version": "5.0.0-pre.18",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -16,7 +16,8 @@
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git://github.com/feathersjs/feathers.git"
19
+ "url": "git://github.com/feathersjs/feathers.git",
20
+ "directory": "packages/authentication-local"
20
21
  },
21
22
  "author": {
22
23
  "name": "Feathers contributors",
@@ -42,8 +43,7 @@
42
43
  "scripts": {
43
44
  "prepublish": "npm run compile",
44
45
  "compile": "shx rm -rf lib/ && tsc",
45
- "test": "npm run compile && npm run mocha",
46
- "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
46
+ "test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
47
47
  },
48
48
  "directories": {
49
49
  "lib": "lib"
@@ -52,23 +52,23 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@feathersjs/authentication": "^5.0.0-pre.17",
56
- "@feathersjs/commons": "^5.0.0-pre.17",
57
- "@feathersjs/errors": "^5.0.0-pre.17",
58
- "@feathersjs/feathers": "^5.0.0-pre.17",
55
+ "@feathersjs/authentication": "^5.0.0-pre.18",
56
+ "@feathersjs/commons": "^5.0.0-pre.18",
57
+ "@feathersjs/errors": "^5.0.0-pre.18",
58
+ "@feathersjs/feathers": "^5.0.0-pre.18",
59
59
  "bcryptjs": "^2.4.3",
60
60
  "lodash": "^4.17.21"
61
61
  },
62
62
  "devDependencies": {
63
- "@feathersjs/memory": "^5.0.0-pre.17",
63
+ "@feathersjs/memory": "^5.0.0-pre.18",
64
64
  "@types/bcryptjs": "^2.4.2",
65
- "@types/lodash": "^4.14.178",
65
+ "@types/lodash": "^4.14.181",
66
66
  "@types/mocha": "^9.1.0",
67
- "@types/node": "^17.0.15",
68
- "mocha": "^9.2.0",
67
+ "@types/node": "^17.0.23",
68
+ "mocha": "^9.2.2",
69
69
  "shx": "^0.3.4",
70
- "ts-node": "^10.4.0",
71
- "typescript": "^4.5.5"
70
+ "ts-node": "^10.7.0",
71
+ "typescript": "^4.6.3"
72
72
  },
73
- "gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
73
+ "gitHead": "c0b7b67d872dcd6b6d94e4587f21332c8a519b50"
74
74
  }