-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(gatsby): fix root resolving of resources (#29577)
* fix(gatsby): fix root resolving of resources * add tests * revert wrong changes * fix e2e * update timeout * fix resource blocking test * fix test * revert change * fix offline test * add test to test block-resources * update absolute url tests * Update packages/gatsby/src/utils/webpack-utils.ts Co-authored-by: Ward Peeters <[email protected]> * actually test absolute url cases Co-authored-by: Michal Piechowiak <[email protected]>
- Loading branch information
Showing
12 changed files
with
185 additions
and
120 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"version": "1.0.0", | ||
"author": "Kyle Mathews <[email protected]>", | ||
"dependencies": { | ||
"cypress": "3.4.1", | ||
"cypress": "^6.5.0", | ||
"gatsby": "^3.0.0-next.6", | ||
"gatsby-plugin-image": "^1.0.0-next.5", | ||
"gatsby-plugin-manifest": "^3.0.0-next.0", | ||
|
@@ -15,7 +15,8 @@ | |
"glob": "^7.1.3", | ||
"react": "^16.8.0", | ||
"react-dom": "^16.8.0", | ||
"react-helmet": "^5.2.0" | ||
"react-helmet": "^5.2.0", | ||
"typeface-merriweather": "^1.1.13" | ||
}, | ||
"keywords": [ | ||
"gatsby" | ||
|
Oops, something went wrong.