forked from openid/AppAuth-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve NPM package with main file and TypeScript types
Fixes openid#33
- Loading branch information
Showing
8 changed files
with
92 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export * from './node_support'; | ||
export * from './authorization_request'; | ||
export * from './authorization_request_handler'; | ||
export * from './authorization_request_handler_test'; | ||
export * from './authorization_request_test'; | ||
export * from './authorization_response'; | ||
export * from './authorization_response_test'; | ||
export * from './authorization_service'; | ||
export * from './authorization_service_configuration'; | ||
export * from './authorization_service_configuration_test'; | ||
export * from './errors'; | ||
export * from './errors_test'; | ||
export * from './flags'; | ||
export * from './logger'; | ||
export * from './query_string_utils'; | ||
export * from './query_string_utils_test'; | ||
export * from './redirect_based_handler'; | ||
export * from './revoke_token_request'; | ||
export * from './revoke_token_request_test'; | ||
export * from './storage'; | ||
export * from './token_request'; | ||
export * from './token_request_handler'; | ||
export * from './token_request_test'; | ||
export * from './token_response'; | ||
export * from './token_response_test'; | ||
export * from './types'; | ||
export * from './xhr'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './node_request_handler'; | ||
export * from './node_requestor'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export * from './node_support'; | ||
export * from './authorization_request'; | ||
export * from './authorization_request_handler'; | ||
export * from './authorization_request_handler_test'; | ||
export * from './authorization_request_test'; | ||
export * from './authorization_response'; | ||
export * from './authorization_response_test'; | ||
export * from './authorization_service'; | ||
export * from './authorization_service_configuration'; | ||
export * from './authorization_service_configuration_test'; | ||
export * from './errors'; | ||
export * from './errors_test'; | ||
export * from './flags'; | ||
export * from './logger'; | ||
export * from './query_string_utils'; | ||
export * from './query_string_utils_test'; | ||
export * from './redirect_based_handler'; | ||
export * from './revoke_token_request'; | ||
export * from './revoke_token_request_test'; | ||
export * from './storage'; | ||
export * from './token_request'; | ||
export * from './token_request_handler'; | ||
export * from './token_request_test'; | ||
export * from './token_response'; | ||
export * from './token_response_test'; | ||
export * from './types'; | ||
export * from './xhr'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './node_request_handler'; | ||
export * from './node_requestor'; |
b1ec541
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the delay. I am on vacation and will look at this first thing on Thu. But, I was wondering if we should:
b1ec541
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tikurahul PR updated, please check openid#34 (comment)