gatsby-plugin-layout
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="1.0.7"></a> | ||
## [1.0.7](https://github.com/gatsbyjs/gatsby/compare/gatsby-plugin-layout@1.0.6...gatsby-plugin-layout@1.0.7) (2018-11-05) | ||
### Bug Fixes | ||
- **gatsby-plugin-layout:** log uncaught errors in old browsers ([#9635](https://github.com/gatsbyjs/gatsby/issues/9635)) ([099d47e](https://github.com/gatsbyjs/gatsby/commit/099d47e)) | ||
<a name="1.0.6"></a> | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "gatsby-plugin-layout", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", | ||
@@ -34,3 +34,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "ce24780bca47ad53f52f8c0eab86e46f8189cf9a" | ||
"gitHead": "864ac048e573add87399b0e5a964fe127184f4bb" | ||
} |
@@ -17,2 +17,5 @@ "use strict"; | ||
} else { | ||
// Logging the error for debugging older browsers as there is no way | ||
// to wrap the thrown error in a try/catch. | ||
console.error(e); | ||
throw e; | ||
@@ -19,0 +22,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13361
51