Skip to content

Commit

Permalink
🟣 gatsby v3 (#171)
Browse files Browse the repository at this point in the history
* upgrade to gatsby v3.

* specify node version.

* update dependencies.

* remove image.

* remove incremental builds.

* remove hot loader.

* add back gatsby image.

* default options.

* update dependencies.

* use node 14.

* update dependencies.

* no avif.

* formatting.
  • Loading branch information
bradgarropy authored Apr 19, 2021
1 parent f4407da commit 663bc18
Show file tree
Hide file tree
Showing 26 changed files with 50,530 additions and 40,065 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ coverage

# logs
debug.log

# templates
*.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Some Ol' Bar In The 90's"
image: "images/bar.jpg"
order: 1
---

My family owned a bar in town with a pool table, a jukebox, and grandma's home cooking (rest in peace). Alcohol would flow at family gatherings where my uncles taught me the meaning of rowdy. Although I was young, I'd still get behind the bar and sling drinks!
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Front Seat Show"
image: "images/concert.jpg"
order: 2
---

Country music grabbed hold of me and never let go. I've been to probably a hundred shows now all over Texas and other states. Along the way I've met many artists and musicians, [Zane Williams][zane-williams] and [Casey Donahew][casey-donahew] even announced our pregnancies!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Take Me Out To A Dancehall"
image: "images/dancing.jpg"
order: 3
---

Dancing has been an obsession since I first stepped foot into Midnight Rodeo years ago. One step, two step, half step, I love it all. I met my [wife][wife] at a country bar when she asked me for a dance! We found our home at [Maverick's Dance Hall][mavericks] in Austin and met the whole crew there.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "My Hometown"
image: "images/farm.jpg"
order: 0
---

I grew up on dairy farm in upstate New York. I was always riding around in my grandpa's red Chevy Silverado or a John Deere tractor with country music playing on the radio. If that doesn't sound like a country song I don't know what does! My earliest memories of country music were George Strait, Alan Jackson, Garth Brooks, Brooks & Dunn, Billy Ray Cyrus, and Shania Twain.
5 changes: 4 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module.exports = {
},
},
{
resolve: "gatsby-source-youtube-v2",
resolve: "gatsby-source-youtube-v3",
options: {
channelId: [dtxcChannelId],
apiKey: process.env.YOUTUBE_API_KEY,
Expand Down Expand Up @@ -147,6 +147,9 @@ module.exports = {
{
resolve: "gatsby-plugin-instagram-embed",
},
{
resolve: "gatsby-plugin-image",
},
{
resolve: "gatsby-plugin-sharp",
},
Expand Down
10 changes: 1 addition & 9 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,7 @@ const createPages = async ({graphql, actions}) => {
tags.map(tag => createTagPage(tag, createPage))
}

const onCreateWebpackConfig = ({stage, actions}) => {
if (stage.startsWith("develop")) {
actions.setWebpackConfig({
resolve: {
alias: {"react-dom": "@hot-loader/react-dom"},
},
})
}

const onCreateWebpackConfig = ({actions}) => {
actions.setWebpackConfig({
resolve: {
modules: [path.resolve(__dirname, "src"), "node_modules"],
Expand Down
Loading

0 comments on commit 663bc18

Please # to comment.