Skip to content

Commit

Permalink
fix: update dependencies and fix font
Browse files Browse the repository at this point in the history
  • Loading branch information
ggdaltoso committed Jan 11, 2024
1 parent 318e046 commit d2da412
Show file tree
Hide file tree
Showing 8 changed files with 8,180 additions and 8,427 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.17.1
2 changes: 1 addition & 1 deletion content/bolacha-acafrao.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ export const preparation = [
ingredients={ingredients}
preparation={preparation}
images={[bol1, bol2, bol3, bol4, bol5]}
frontmatter={props.frontmatter}
frontmatter={props.pageContext.content.frontmatter}
/>
2 changes: 1 addition & 1 deletion content/enchiladas-de-pepino.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ export const preparation = [
ingredients={ingredients}
preparation={preparation}
images={[pep1, pep2, pep3, pep4]}
frontmatter={props.frontmatter}
frontmatter={props.pageContext.content.frontmatter}
/>
2 changes: 1 addition & 1 deletion content/macarrao-molho-de-cenoura.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@ export const preparation = [
ingredients={ingredients}
preparation={preparation}
images={[mac1, mac2, mac3, mac4, mac5, mac6, mac7, mac8, mac9, mac10]}
frontmatter={props.frontmatter}
frontmatter={props.pageContext.content.frontmatter}
/>
2 changes: 1 addition & 1 deletion content/pao-de-banana.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ export const preparation = [
ingredients={ingredients}
preparation={preparation}
images={[pao1, pao2, pao3, pao4]}
frontmatter={props.frontmatter}
frontmatter={props.pageContext.content.frontmatter}
/>
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@
"homepage": "https://95recipes.ggdaltoso.dev",
"private": true,
"dependencies": {
"@react95/core": "^5.7.2",
"@react95/gatsby-theme": "^1.3.0",
"@react95/core": "^7.0.1",
"@react95/gatsby-theme": "^2.2.0",
"@react95/icons": "^2.0.4",
"gatsby": "^4.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-offline": "^5.4.0",
"gatsby-plugin-sitemap": "^5.4.0",
"gh-pages": "^3.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-medium-image-zoom": "^4.3.5",
"gatsby": "^5.13.1",
"gatsby-plugin-manifest": "^5.13.0",
"gatsby-plugin-offline": "^6.13.0",
"gatsby-plugin-sitemap": "^6.13.0",
"gh-pages": "^6.1.1",
"object-path": "^0.11.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-medium-image-zoom": "^5.1.9",
"styled-components": "^5.3.3"
},
"scripts": {
Expand Down Expand Up @@ -45,14 +46,14 @@
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@semantic-release/github": "^9.2.6",
"@semantic-release/release-notes-generator": "^12.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"semantic-release": "^18.0.1"
"semantic-release": "^22.0.12"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Recipe.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Recipe = ({
const {
location: { href: url },
} = document;

// Mac user may not have this feature 🫠
if (navigator.canShare && navigator.canShare({ url })) {
setButtons([{ value: 'Compartilhar', onClick: () => share(url) }]);
Expand Down
Loading

0 comments on commit d2da412

Please sign in to comment.