Skip to content

Commit f1144a0

Browse files
authored
ci(Netlify): update yarn and node versions to fix build failure (#552)
* ci: update yarn & node versions * chore(deps): update all dependencies * chore(deps): update lock file
1 parent 5bd08e0 commit f1144a0

12 files changed

+2186
-1364
lines changed

gatsby-node.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ exports.createPages = ({ actions, graphql }) => {
2323
}
2424
}
2525
}
26-
`).then(result => {
26+
`).then((result) => {
2727
if (result.errors) {
28-
result.errors.forEach(e => console.error(e.toString()))
28+
result.errors.forEach((e) => console.error(e.toString()))
2929
return Promise.reject(result.errors)
3030
}
3131

3232
const posts = result.data.allMarkdownRemark.edges
3333

34-
posts.forEach(edge => {
34+
posts.forEach((edge) => {
3535
const id = edge.node.id
3636
createPage({
3737
path: edge.node.fields.slug,
@@ -49,7 +49,7 @@ exports.createPages = ({ actions, graphql }) => {
4949
// Tag pages:
5050
let tags = []
5151
// Iterate through each post, putting all found tags into `tags`
52-
posts.forEach(edge => {
52+
posts.forEach((edge) => {
5353
if (_.get(edge, `node.frontmatter.tags`)) {
5454
tags = tags.concat(edge.node.frontmatter.tags)
5555
}
@@ -58,7 +58,7 @@ exports.createPages = ({ actions, graphql }) => {
5858
tags = _.uniq(tags)
5959

6060
// Make tag pages
61-
tags.forEach(tag => {
61+
tags.forEach((tag) => {
6262
const tagPath = `/tags/${_.kebabCase(tag)}/`
6363

6464
createPage({

netlify.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
command = "npm run build"
44
functions = "lambda"
55
[build.environment]
6-
YARN_VERSION = "1.9.4"
6+
NODE_VERSION = "12"
7+
YARN_VERSION = "1.22.4"
78
YARN_FLAGS = "--no-ignore-optional"

package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@
55
"author": "Austin Green",
66
"dependencies": {
77
"bulma": "^0.8.0",
8-
"gatsby": "^2.13.31",
9-
"gatsby-image": "^2.0.23",
10-
"gatsby-plugin-netlify": "^2.0.6",
11-
"gatsby-plugin-netlify-cms": "^4.1.6",
12-
"gatsby-plugin-purgecss": "^4.0.0",
13-
"gatsby-plugin-react-helmet": "^3.0.4",
14-
"gatsby-plugin-sass": "^2.0.7",
15-
"gatsby-plugin-sharp": "^2.2.9",
16-
"gatsby-remark-copy-linked-files": "^2.0.7",
17-
"gatsby-remark-images": "^3.1.6",
8+
"gatsby": "^2.20.35",
9+
"gatsby-image": "^2.3.5",
10+
"gatsby-plugin-netlify": "^2.2.4",
11+
"gatsby-plugin-netlify-cms": "^4.2.5",
12+
"gatsby-plugin-purgecss": "^5.0.0",
13+
"gatsby-plugin-react-helmet": "^3.2.5",
14+
"gatsby-plugin-sass": "^2.2.4",
15+
"gatsby-plugin-sharp": "^2.5.7",
16+
"gatsby-remark-copy-linked-files": "^2.2.4",
17+
"gatsby-remark-images": "^3.2.6",
1818
"gatsby-remark-relative-images": "^0.3.0",
19-
"gatsby-source-filesystem": "^2.0.26",
20-
"gatsby-transformer-remark": "^2.6.9",
21-
"gatsby-transformer-sharp": "^2.1.9",
19+
"gatsby-source-filesystem": "^2.2.5",
20+
"gatsby-transformer-remark": "^2.7.5",
21+
"gatsby-transformer-sharp": "^2.4.7",
2222
"lodash": "^4.17.15",
2323
"lodash-webpack-plugin": "^0.11.4",
2424
"netlify-cms-app": "^2.9.6",
2525
"netlify-cms-media-library-cloudinary": "^1.3.2",
2626
"netlify-cms-media-library-uploadcare": "^0.5.2",
27-
"node-sass": "^4.11.0",
27+
"node-sass": "^4.14.0",
2828
"prop-types": "^15.6.0",
2929
"react": "^16.8.4",
3030
"react-dom": "^16.8.4",
31-
"react-helmet": "^5.2.0",
31+
"react-helmet": "^6.0.0",
3232
"uuid": "^7.0.0"
3333
},
3434
"keywords": [
@@ -45,6 +45,6 @@
4545
"test": "echo \"Error: no test specified\" && exit 1"
4646
},
4747
"devDependencies": {
48-
"prettier": "^1.15.3"
48+
"prettier": "^2.0.5"
4949
}
5050
}

src/components/Features.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PreviewCompatibleImage from '../components/PreviewCompatibleImage'
44

55
const FeatureGrid = ({ gridItems }) => (
66
<div className="columns is-multiline">
7-
{gridItems.map(item => (
7+
{gridItems.map((item) => (
88
<div key={item.text} className="column is-6">
99
<section className="section">
1010
<div className="has-text-centered">

src/components/Pricing.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types'
33

44
const Pricing = ({ data }) => (
55
<div className="columns">
6-
{data.map(price => (
6+
{data.map((price) => (
77
<div key={price.plan} className="column">
88
<section className="section">
99
<h4 className="has-text-centered has-text-weight-semibold">
@@ -14,7 +14,7 @@ const Pricing = ({ data }) => (
1414
</h2>
1515
<p className="has-text-weight-semibold">{price.description}</p>
1616
<ul>
17-
{price.items.map(item => (
17+
{price.items.map((item) => (
1818
<li key={item} className="is-size-5">
1919
{item}
2020
</li>

src/components/Testimonials.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { v4 } from 'uuid'
44

55
const Testimonials = ({ testimonials }) => (
66
<div>
7-
{testimonials.map(testimonial => (
7+
{testimonials.map((testimonial) => (
88
<article key={v4()} className="message">
99
<div className="message-body">
1010
{testimonial.quote}

src/pages/contact/file-upload.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ export default class Contact extends React.Component {
1818
this.state = {}
1919
}
2020

21-
handleChange = e => {
21+
handleChange = (e) => {
2222
this.setState({ [e.target.name]: e.target.value })
2323
}
2424

25-
handleAttachment = e => {
25+
handleAttachment = (e) => {
2626
this.setState({ [e.target.name]: e.target.files[0] })
2727
}
2828

29-
handleSubmit = e => {
29+
handleSubmit = (e) => {
3030
e.preventDefault()
3131
const form = e.target
3232
fetch('/', {
@@ -37,7 +37,7 @@ export default class Contact extends React.Component {
3737
}),
3838
})
3939
.then(() => navigate(form.getAttribute('action')))
40-
.catch(error => alert(error))
40+
.catch((error) => alert(error))
4141
}
4242

4343
render() {

src/pages/contact/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Layout from '../../components/Layout'
44

55
function encode(data) {
66
return Object.keys(data)
7-
.map(key => encodeURIComponent(key) + '=' + encodeURIComponent(data[key]))
7+
.map((key) => encodeURIComponent(key) + '=' + encodeURIComponent(data[key]))
88
.join('&')
99
}
1010

@@ -14,11 +14,11 @@ export default class Index extends React.Component {
1414
this.state = { isValidated: false }
1515
}
1616

17-
handleChange = e => {
17+
handleChange = (e) => {
1818
this.setState({ [e.target.name]: e.target.value })
1919
}
2020

21-
handleSubmit = e => {
21+
handleSubmit = (e) => {
2222
e.preventDefault()
2323
const form = e.target
2424
fetch('/', {
@@ -30,7 +30,7 @@ export default class Index extends React.Component {
3030
}),
3131
})
3232
.then(() => navigate(form.getAttribute('action')))
33-
.catch(error => alert(error))
33+
.catch((error) => alert(error))
3434
}
3535

3636
render() {

src/pages/tags/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import { kebabCase } from 'lodash'
3-
import Helmet from 'react-helmet'
3+
import { Helmet } from 'react-helmet'
44
import { Link, graphql } from 'gatsby'
55
import Layout from '../../components/Layout'
66

@@ -23,7 +23,7 @@ const TagsPage = ({
2323
>
2424
<h1 className="title is-size-2 is-bold-light">Tags</h1>
2525
<ul className="taglist">
26-
{group.map(tag => (
26+
{group.map((tag) => (
2727
<li key={tag.fieldValue}>
2828
<Link to={`/tags/${kebabCase(tag.fieldValue)}/`}>
2929
{tag.fieldValue} ({tag.totalCount})

src/templates/blog-post.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react'
22
import PropTypes from 'prop-types'
33
import { kebabCase } from 'lodash'
4-
import Helmet from 'react-helmet'
4+
import { Helmet } from 'react-helmet'
55
import { graphql, Link } from 'gatsby'
66
import Layout from '../components/Layout'
77
import Content, { HTMLContent } from '../components/Content'
@@ -31,7 +31,7 @@ export const BlogPostTemplate = ({
3131
<div style={{ marginTop: `4rem` }}>
3232
<h4>Tags</h4>
3333
<ul className="taglist">
34-
{tags.map(tag => (
34+
{tags.map((tag) => (
3535
<li key={tag + `tag`}>
3636
<Link to={`/tags/${kebabCase(tag)}/`}>{tag}</Link>
3737
</li>

src/templates/tags.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import React from 'react'
2-
import Helmet from 'react-helmet'
2+
import { Helmet } from 'react-helmet'
33
import { Link, graphql } from 'gatsby'
44
import Layout from '../components/Layout'
55

66
class TagRoute extends React.Component {
77
render() {
88
const posts = this.props.data.allMarkdownRemark.edges
9-
const postLinks = posts.map(post => (
9+
const postLinks = posts.map((post) => (
1010
<li key={post.node.fields.slug}>
1111
<Link to={post.node.fields.slug}>
1212
<h2 className="is-size-2">{post.node.frontmatter.title}</h2>

0 commit comments

Comments
 (0)