Releases: LekoArts/gatsby-themes
@lekoarts/[email protected]
Patch Changes
-
#664
2ca7855
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-minimal-blog-core
@lekoarts/[email protected]
Patch Changes
-
#662
22e57f5
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-jodie-corePackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-sharp ^3.10.2
->^3.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
gatsby-transformer-sharp ^3.10.0
->^3.13.0
-
#661
841e6f1
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-jodiePackage Change gatsby-plugin-image ^1.10.1
->^1.13.0
gatsby-plugin-react-helmet ^4.10.0
->^4.13.0
-
Updated dependencies [
22e57f5
]:- @lekoarts/[email protected]
@lekoarts/[email protected]
Patch Changes
-
#662
22e57f5
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-jodie-corePackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-sharp ^3.10.2
->^3.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
gatsby-transformer-sharp ^3.10.0
->^3.13.0
@lekoarts/[email protected]
Patch Changes
-
#660
5deed2d
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-graphql-playgroundPackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-react-helmet ^4.10.0
->^4.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
@lekoarts/[email protected]
Patch Changes
-
#658
24211fd
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emmaPackage Change gatsby-plugin-catch-links ^3.10.0
->^3.13.0
gatsby-plugin-image ^1.10.1
->^1.13.0
gatsby-plugin-react-helmet ^4.10.0
->^4.13.0
-
#659
bbdfee4
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emma-core -
Updated dependencies [
bbdfee4
]:- @lekoarts/[email protected]
@lekoarts/[email protected]
Patch Changes
-
#659
bbdfee4
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emma-core
@lekoarts/[email protected]
Patch Changes
-
#657
abbd114
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emilia-corePackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-sharp ^3.10.2
->^3.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
gatsby-transformer-sharp ^3.10.0
->^3.13.0
-
#656
ea1a9b2
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emiliaPackage Change gatsby-plugin-image ^1.10.1
->^1.13.0
gatsby-plugin-react-helmet ^4.10.0
->^4.13.0
-
Updated dependencies [
abbd114
]:- @lekoarts/[email protected]
@lekoarts/[email protected]
Patch Changes
-
#657
abbd114
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-emilia-corePackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-sharp ^3.10.2
->^3.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
gatsby-transformer-sharp ^3.10.0
->^3.13.0
@lekoarts/[email protected]
Patch Changes
-
#655
d01b198
Thanks @renovate! - fix(deps): update minor and patch dependencies for gatsby-theme-caraPackage Change gatsby-plugin-mdx ^2.10.1
->^2.13.0
gatsby-plugin-react-helmet ^4.10.0
->^4.13.0
gatsby-source-filesystem ^3.10.0
->^3.13.0
@lekoarts/[email protected]
Minor Changes
-
#644
4fccc44
Thanks @LekoArts! - feat(minimal-blog-core): SetbackgroundColor
in gatsby-remark-images totransparent
By default the plugin has
white
as abackgroundColor
. This is a problem for transparent images (PNG) that are viewed in the dark theme version of the site.
So as a sensible default I'll set this totransparent
now. If you relied on this being white and want to restore the old behavior, set themdx
option tofalse
for the theme, copy/paste the existinggatsby-plugin-mdx
config into your own site.For example, your
gatsby-config.js
then will look like this:module.exports = { // + Rest of your config plugins: [ // + rest of your plugins { resolve: `@lekoarts/gatsby-theme-minimal-blog`, options: { mdx: false // + rest of the options you want to set } }, { resolve: `gatsby-plugin-mdx`, options: { lessBabel: true, extensions: [`.mdx`, `.md`], gatsbyRemarkPlugins: [ { resolve: `gatsby-remark-images`, options: { maxWidth: 960, quality: 90, linkImagesToOriginal: false } } ], plugins: [ { resolve: `gatsby-remark-images`, options: { maxWidth: 960, quality: 90, linkImagesToOriginal: false } } ] } } ] };
Patch Changes
- Updated dependencies [
4fccc44
]:- @lekoarts/[email protected]