You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(browser-sdk): bump version to 3.3.0 and update dependencies (#445)
- Updated the version of the browser SDK to 3.3.0 in package.json.
- Adjusted yarn.lock to reflect the new version and its dependencies.
- Added documentation for the new `offline` option in README.md to
enhance testing capabilities.
Copy file name to clipboardExpand all lines: packages/browser-sdk/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,7 @@ type Configuration = {
109
109
staleWhileRevalidate?:boolean; // Revalidate in the background when cached features turn stale to avoid latency in the UI (default: false)
110
110
staleTimeMs?:number; // at initialization time features are loaded from the cache unless they have gone stale. Defaults to 0 which means the cache is disabled. Increase this in the case of a non-SPA
111
111
expireTimeMs?:number; // In case we're unable to fetch features from Bucket, cached/stale features will be used instead until they expire after `expireTimeMs`. Default is 30 days
112
+
offline?:boolean; // Use the SDK in offline mode. Offline mode is useful during testing and local development
0 commit comments