-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor: only use esm import syntax #1114
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1114 +/- ##
=======================================
Coverage 93.51% 93.51%
=======================================
Files 154 154
Lines 4147 4149 +2
Branches 906 907 +1
=======================================
+ Hits 3878 3880 +2
Misses 253 253
Partials 16 16
Continue to review full report at Codecov.
|
@@ -247,6 +245,10 @@ var storageUtil: BrowserStorageUtil = { | |||
}, | |||
|
|||
get: function(name: string): string { | |||
// return all cookies when no args is provided |
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.
If name is optional, should the method signature be:
get: function(name?: string): string
83c7ef0
to
17237f4
Compare
test/apps/react-oie/vite.config.js
Outdated
|
||
const env = {}; | ||
// List of environment variables made available to the app | ||
['ISSUER', 'CLIENT_ID'].forEach((key) => { |
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.
include 'SPA_CLIENT_ID' for consistency across other sdks
add cjs bundle validation test use vite for react-oie test app adjust rollup config for development generate esm node bundle add exports field as guiduice of different envs
17237f4
to
0dcad6d
Compare
add cjs bundle validation test use vite for react-oie test app adjust rollup config for development generate esm node bundle add exports field as guiduice of different envs OKTA-405564 <<<Jenkins Check-In of Tested SHA: 0dcad6d for eng_productivity_ci_bot_okta@okta.com>>> Artifact: okta-auth-js Files changed count: 38 PR Link: "#1114"
resolves #1073
vite
instead ofCRA
for react-oie test app, now it's faster dev experience and able to test (discover issues) ESM moduleDownstream tests (green):