forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(next-pwa): better offline support for App Router, extendDefaultR…
…untimeCaching [bump]
- Loading branch information
Showing
22 changed files
with
741 additions
and
751 deletions.
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,7 @@ | ||
--- | ||
"@ducanh2912/next-pwa": minor | ||
--- | ||
|
||
feat(next-pwa): better offline support for `app` | ||
|
||
- This update helps improve offline support for App Router by caching RSC prefetches separately from other RSC requests. |
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,9 @@ | ||
--- | ||
"@ducanh2912/next-pwa": minor | ||
--- | ||
|
||
feat(next-pwa): added support for extending the default `runtimeCaching` array | ||
|
||
- To use this feature you can add `extendDefaultRuntimeCaching` to your configuration. | ||
|
||
- This feature helps you easily extend the default `runtimeCaching` array without having to copy the whole thing to your config. Your `runtimeCaching` have priority over the default runtime caching array, so its entries will override the default `runtimeCaching`'s entries should any of them share `cacheName`. |
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 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 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 |
---|---|---|
|
@@ -27,26 +27,26 @@ | |
"@changesets/cli": "2.26.1", | ||
"@ducanh2912/next-pwa": "workspace:*", | ||
"@ducanh2912/next-sw": "workspace:*", | ||
"@types/node": "20.1.1", | ||
"@types/node": "20.2.3", | ||
"@types/shell-quote": "1.7.1", | ||
"@typescript-eslint/eslint-plugin": "5.59.5", | ||
"@typescript-eslint/parser": "5.59.5", | ||
"@typescript-eslint/eslint-plugin": "5.59.7", | ||
"@typescript-eslint/parser": "5.59.7", | ||
"cross-env": "7.0.3", | ||
"eslint": "8.40.0", | ||
"eslint": "8.41.0", | ||
"eslint-config-prettier": "8.8.0", | ||
"eslint-plugin-jsdoc": "44.0.2", | ||
"eslint-plugin-jsdoc": "44.2.5", | ||
"eslint-plugin-simple-import-sort": "10.0.0", | ||
"fast-glob": "3.2.12", | ||
"husky": "8.0.3", | ||
"lint-staged": "13.2.2", | ||
"npm-check-updates": "16.10.10", | ||
"npm-check-updates": "16.10.12", | ||
"prettier": "2.8.8", | ||
"rimraf": "5.0.0", | ||
"rimraf": "5.0.1", | ||
"shell-quote": "1.8.1", | ||
"tslib": "2.5.0", | ||
"turbo": "1.9.3", | ||
"typescript": "5.1.0-dev.20230509", | ||
"webpack": "5.82.0" | ||
"tslib": "2.5.2", | ||
"turbo": "1.9.9", | ||
"typescript": "5.2.0-dev.20230524", | ||
"webpack": "5.84.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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
Oops, something went wrong.