@feathersjs/authentication-oauth2
Advanced tools
Comparing version 1.0.0 to 1.0.1
# Change Log | ||
## [v1.0.0](https://github.com/feathersjs/authentication-oauth2/tree/v1.0.0) (2017-11-01) | ||
[Full Changelog](https://github.com/feathersjs/authentication-oauth2/compare/v1.0.0-pre.1...v1.0.0) | ||
**Merged pull requests:** | ||
- Update dependencies for release [\#52](https://github.com/feathersjs/authentication-oauth2/pull/52) ([daffl](https://github.com/daffl)) | ||
## [v1.0.0-pre.1](https://github.com/feathersjs/authentication-oauth2/tree/v1.0.0-pre.1) (2017-10-25) | ||
@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/feathersjs/authentication-oauth2/compare/v0.3.2...v1.0.0-pre.1) |
@@ -24,3 +24,3 @@ const Debug = require('debug'); | ||
module.exports = function init (options = {}) { | ||
function init (options = {}) { | ||
return function oauth2Auth () { | ||
@@ -103,7 +103,10 @@ const app = this; | ||
}; | ||
}; | ||
} | ||
module.exports = init; | ||
// Exposed Modules | ||
Object.assign(module.exports, { | ||
default: init, | ||
Verifier: DefaultVerifier | ||
}); |
{ | ||
"name": "@feathersjs/authentication-oauth2", | ||
"description": "An OAuth2 authentication strategy for feathers-authentication using Passport", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "https://github.com/feathersjs/authentication-oauth2", | ||
@@ -57,3 +57,3 @@ "main": "lib/", | ||
"devDependencies": { | ||
"@feathersjs/authentication": "^1.4.0", | ||
"@feathersjs/authentication": "^2.0.0", | ||
"@feathersjs/express": "^1.0.0", | ||
@@ -60,0 +60,0 @@ "@feathersjs/feathers": "^3.0.0", |
194608
283