forked from shadowwalker/next-pwa
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…74) [bump]
- Loading branch information
Showing
25 changed files
with
1,470 additions
and
1,279 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,9 @@ | ||
--- | ||
"@ducanh2912/next-pwa": minor | ||
--- | ||
|
||
refactor: removed `'activated'` event listeners in `sw-entry.ts` | ||
|
||
- These listeners seem to be unnecessary as we already have `runtimeCaching`. Though, this is merely an assumption and might cause issues for some people. | ||
Do open a new issue if you are one of them :) | ||
- This also updates every dependency to their latest versions. |
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 was deleted.
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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
"docs:build": "cross-env FORCE_COLOR=1 turbo run build --filter=./docs", | ||
"docs:lint": "cross-env FORCE_COLOR=1 turbo run lint --parallel --filter=./docs", | ||
"empty-chset": "changeset --empty", | ||
"examples:build": "cross-env FORCE_COLOR=1 turbo run build --filter=./examples/*", | ||
"examples:build": "cross-env FORCE_COLOR=1 turbo run build --filter=./examples/* --concurrency=50%", | ||
"examples:dev": "cross-env FORCE_COLOR=1 turbo run dev --parallel --filter=./examples/*", | ||
"examples:lint": "cross-env FORCE_COLOR=1 turbo run lint --parallel --filter=./examples/*", | ||
"format": "prettier --write", | ||
|
@@ -34,29 +34,29 @@ | |
"@changesets/cli": "2.26.2", | ||
"@ducanh2912/next-pwa": "workspace:*", | ||
"@ducanh2912/next-sw": "workspace:*", | ||
"@types/node": "20.4.2", | ||
"@types/node": "20.5.1", | ||
"@types/shell-quote": "1.7.1", | ||
"@typescript-eslint/eslint-plugin": "6.1.0", | ||
"@typescript-eslint/parser": "6.1.0", | ||
"@typescript-eslint/eslint-plugin": "6.4.1", | ||
"@typescript-eslint/parser": "6.4.1", | ||
"cross-env": "7.0.3", | ||
"eslint": "8.45.0", | ||
"eslint-config-next": "13.4.10", | ||
"eslint-config-prettier": "8.8.0", | ||
"eslint-config-turbo": "1.10.8", | ||
"eslint-plugin-import": "2.27.5", | ||
"eslint": "8.47.0", | ||
"eslint-config-next": "13.4.19", | ||
"eslint-config-prettier": "9.0.0", | ||
"eslint-config-turbo": "1.10.12", | ||
"eslint-plugin-import": "2.28.1", | ||
"eslint-plugin-simple-import-sort": "10.0.0", | ||
"fast-glob": "3.3.0", | ||
"fast-glob": "3.3.1", | ||
"husky": "8.0.3", | ||
"jest": "29.6.1", | ||
"lint-staged": "13.2.3", | ||
"npm-check-updates": "16.10.16", | ||
"prettier": "3.0.0", | ||
"prettier-plugin-tailwindcss": "0.4.1", | ||
"jest": "29.6.3", | ||
"lint-staged": "14.0.1", | ||
"npm-check-updates": "16.12.3", | ||
"prettier": "3.0.2", | ||
"prettier-plugin-tailwindcss": "0.5.3", | ||
"rimraf": "5.0.1", | ||
"shell-quote": "1.8.1", | ||
"tslib": "2.6.0", | ||
"turbo": "1.10.8", | ||
"typescript": "5.2.0-dev.20230718" | ||
"tslib": "2.6.2", | ||
"turbo": "1.10.12", | ||
"typescript": "5.3.0-dev.20230822" | ||
}, | ||
"packageManager": "[email protected].2" | ||
"packageManager": "[email protected].12" | ||
} |
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 |
---|---|---|
|
@@ -19,6 +19,6 @@ | |
} | ||
}, | ||
"devDependencies": { | ||
"@swc/core": "1.3.69" | ||
"@swc/core": "1.3.78" | ||
} | ||
} |
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.