@feathersjs/authentication-local
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Change Log | ||
## [v1.0.0](https://github.com/feathersjs/authentication-local/tree/v1.0.0) (2017-11-01) | ||
[Full Changelog](https://github.com/feathersjs/authentication-local/compare/v1.0.0-pre.2...v1.0.0) | ||
**Merged pull requests:** | ||
- Update dependencies for release [\#41](https://github.com/feathersjs/authentication-local/pull/41) ([daffl](https://github.com/daffl)) | ||
## [v1.0.0-pre.2](https://github.com/feathersjs/authentication-local/tree/v1.0.0-pre.2) (2017-10-27) | ||
@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/feathersjs/authentication-local/compare/v1.0.0-pre.1...v1.0.0-pre.2) |
@@ -24,3 +24,3 @@ const Debug = require('debug'); | ||
module.exports = function init (options = {}) { | ||
function init (options = {}) { | ||
return function localAuth () { | ||
@@ -62,6 +62,9 @@ const app = this; | ||
}; | ||
}; | ||
} | ||
module.exports = init; | ||
// Exposed Modules | ||
Object.assign(module.exports, { | ||
default: init, | ||
defaults, | ||
@@ -68,0 +71,0 @@ hooks, |
{ | ||
"name": "@feathersjs/authentication-local", | ||
"description": "Local authentication strategy for @feathers/authentication", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/feathersjs/authentication-local", | ||
@@ -61,3 +61,3 @@ "main": "lib/", | ||
"devDependencies": { | ||
"@feathersjs/authentication": "^1.4.0", | ||
"@feathersjs/authentication": "^2.0.0", | ||
"@feathersjs/authentication-jwt": "^1.0.0", | ||
@@ -64,0 +64,0 @@ "@feathersjs/express": "^1.0.0", |
29795
303