react-oauth2-pkce
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "react-oauth2-pkce", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Authenticate against generic OAuth2 using PKCE", | ||
@@ -25,2 +25,3 @@ "author": "Gardner Bickford <gardner@bickford.nz>", | ||
"prepublish": "run-s build", | ||
"postversion": "git push && git push --tags", | ||
"test": "run-s test:unit test:lint test:build", | ||
@@ -27,0 +28,0 @@ "test:build": "run-s build", |
@@ -24,3 +24,3 @@ # react-oauth2-pkce | ||
location: window.location, | ||
provider: process.env.REACT_APP_PROVIDER || 'https://uoapool-sandbox.auth.ap-southeast-2.amazoncognito.com/oauth2', | ||
provider: process.env.REACT_APP_PROVIDER || 'https://sandbox.auth.ap-southeast-2.amazoncognito.com/oauth2', | ||
redirectUri: process.env.REACT_APP_REDIRECT_URI || window.location.origin, | ||
@@ -27,0 +27,0 @@ scopes: ['openid', 'profile'] |
57053