-
Notifications
You must be signed in to change notification settings - Fork 830
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
Sw precaching #76
Merged
Merged
Sw precaching #76
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8d21f5c
Adding sw-precaching
770f3c0
Started to add some caching logic. Needs errors cases covered and a t…
4ee2f80
Fixing lint error - happy travis
1b0f848
Started moving to indexeddb tracking of revisions
e497c07
Fixing up tests and fixing caching to remove old entries
1803beb
Review comments
c6290a8
Merging
e0c54ca
Moving test server over to gulp-serve
52adb3b
Handling errors for bad inputs to cache manifest
0e3590d
Adding some valid values to ensure they work
ceff0e2
Tidying up indexeddb usage
0d7ed2c
Fixing up tests and removing the demo section for sw-precaching
b9fdbcc
Adding tests to manage cache and indexeddb deletion
49600d2
Switching away from async and await due to build issues
3b30405
sw-precaching
92058e8
Moving to async and await
f08fe52
sw-precaching
7601ac8
Adding secondary server and smartest file manifest generation
68d8f9b
Hopefully making travis happy
0d6e499
Fixing same server issue in sw-offline-analytics
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Strict
===
are being used elsewhere. Is there a reason the IDB helper is preferring==
?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.
That's my (somewhat old) code.
It's
==
to catchnull
as well asundefined
, since they both would be treated the same way. Not sure how likely it is for someone to explicitly pass innull
...