Gatsby Cloud Build Report
docs-website
:tada: Your build was successful! See the Deploy preview here.
Build Details
:clock1: Build time: 21m
gatsby-cloud[bot] issue comment newrelic/docs-website
docs-website
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 21m
gatsby-cloud[bot] issue comment ethereum/ethereum-org-website
Changed "Ethereum Testnets" link on this article to reference /developers/docs/networks/#ethereum-testnets
instead of /developers/docs/networks/#testnets
.
Issue contains reproducibility steps - #6384
ethereum-org-website-dev
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 19m
gatsby-cloud[bot] in CodersBros/gatsby-starter-minimal create branch master
gatsby-cloud[bot] issue comment newrelic/docs-website
Assorted small edits from across day.
docs-website-develop
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 20m
gatsby-cloud[bot] issue comment PrideInLondon/pride-london-web
PR Template
pride-london-web
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 2m
gatsby-cloud[bot] in MarcusCole518/starter-gatsby-blog create branch master
gatsby-cloud[bot] in MarcusCole518/starter-gatsby-blog-deploy-test create branch master
gatsby-cloud[bot] in ronecharles/gatsby-starter-portfolio-cara create branch main
gatsby-cloud[bot] push ronecharles/gatsby-starter-portfolio-cara
commit sha: 556fc3ed57e074baa01c2f30f4e72281b62d9420
push time in 1 hour agogatsby-cloud[bot] issue comment franciscocobas/gatsby-francisco-cobas-dev
franciscocobas-dev
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 4m
gatsby-cloud[bot] issue comment newrelic/instant-observability-website
instant-observability-website
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 2m
gatsby-cloud[bot] issue comment ccswbs/gus
When pages require functionality that does not exist yet in our components library, we can use a YAML block to render the component in the middle of Basic Page content. (Later, if more people need the new component and the requirements are set, we can build an actual Drupal widget for it.)
<div class="page-container">
and <div class="site-content row">
)<section>
element on the Media Text widget (have the media + text wrapped in a section rather than two sections, one containing media, one containing text, together wrapped in a div)http://yamlblock-chug.pantheonsite.io
import React from "react"
import { StaticQuery, graphql } from "gatsby"
const yaml = require('js-yaml');
const render = ({ field_yaml_map, relationships }) => {
let yamlMap;
let yamlFiles = {};
relationships.field_yaml_files.forEach(file => {
yamlFiles[file.path.alias] = file.relationships.field_media_image.localFile;
});
try {
yamlMap = yaml.load(field_yaml_map);
} catch (e) {
console.log(e);
return null;
}
return (
// Render component here
)
}
// Add id of component to query and name component here
const query = graphql`
query {
blockContentYamlBlock(field_yaml_id: {glob: "id_of_my_yaml_block"}) {
id
field_yaml_id
field_yaml_map
relationships {
field_yaml_files {
id
name
relationships {
field_media_image {
localFile {
childImageSharp {
gatsbyImageData(placeholder: BLURRED, layout: CONSTRAINED)
}
}
}
}
path {
alias
}
}
}
}
}
`
// Add unique name of component here
export default function UniqueNameOfComponent() {
return <StaticQuery query={query} render={({blockContentYamlBlock}) => render(blockContentYamlBlock)} />
}
// @todo - add index of components in components/blocks and import all in one line
// until then, import each component manually below
import InternationalStatsGlobal from 'components/blocks/international/international-stats-global'
import InternationalExploreThingsToKnow from 'components/blocks/international/international-things-to-know'
import InternationalExploreButtons from 'components/blocks/international/international-explore-btns'
import UniqueNameOfComponent from 'components/blocks/international/id-of-my-yaml-block'
const YamlWidget = (props) => {
let component = props.blockData.relationships.field_custom_block?.field_yaml_id;
// add new custom components to conditional rendering below
return ({
'international_stats_global_impact': <InternationalStatsGlobal />,
'international_explore_things_to_know': <InternationalExploreThingsToKnow />,
'international_explore_btns': <InternationalExploreButtons />,
'id_of_my_yaml_block': <UniqueNameOfComponent />,
}[component] || null )
}
TQ Test
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 4m
gatsby-cloud[bot] push MichaelGrib/gatsby-blog-demo
commit sha: a636ea8f9a8b699659db82cb4ad30a204227ad28
push time in 2 hours agogatsby-cloud[bot] in MichaelGrib/gatsby-blog-demo create branch main
gatsby-cloud[bot] push JaiiR320/gatsby-starter-blog
commit sha: 335396c380018335d529efc22a3d92bee8290fbd
push time in 2 hours agogatsby-cloud[bot] in JaiiR320/gatsby-starter-blog create branch main
gatsby-cloud[bot] push JaiiR320/gatsby-blog-cosmicjs
commit sha: 4c5117d8da1489e8551b5f79dd29b46f87dec77c
push time in 2 hours agogatsby-cloud[bot] in JaiiR320/gatsby-blog-cosmicjs create branch main
gatsby-cloud[bot] push davidalexoliveira/gatsby-blog-demo
commit sha: 869d27c5f51a0b4e771d44c09abaaf3138e4115d
push time in 3 hours agogatsby-cloud[bot] in davidalexoliveira/gatsby-blog-demo create branch main
gatsby-cloud[bot] issue comment ethereum/ethereum-org-website
:triangular_flag_on_post: Your build failed. See the build logs here
Errors
"gatsby-node.js" threw an error while running the onPostBuild lifecycle: Command failed: npm run build:lambda && cp netlify.toml public [ ModuleBuildError: Module build failed (from /usr/src/app/www/node_modules/netlify-lambda/node_modules/babel-loader/lib/index.js): SyntaxError: /usr/src/app/www/src/lambda/coinmetrics.ts: Unexpected token (3:12) 1 | import axios from "axios" 2 | > 3 | import type { HandlerResponse } from "@netlify/functions" | ^ 4 | 5 | const lambda = async (): Promise=> { 6 | try { at Parser._raise (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:569:17) at Parser.raiseWithData (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:562:17) at Parser.raise (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:523:17) at Parser.unexpected (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:3601:16) at Parser.expectContextual (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:3549:42) at Parser.parseImport (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:14984:12) at Parser.parseStatementContent (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:13623:27) at Parser.parseStatement (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:13521:17) at Parser.parseBlockOrModuleBlockBody (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:14110:25) at Parser.parseBlockBody (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:14101:10) at Parser.parseProgram (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:13441:10) at Parser.parseTopLevel (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:13428:25) at Parser.parse (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:15206:10) at parse (/usr/src/app/www/node_modules/@babel/parser/lib/index.js:15258:38) at parser (/usr/src/app/www/node_modules/@babel/core/lib/parser/index.js:
gatsby-cloud[bot] push miraclecheesebunnies/gatsby-starter-default
commit sha: a058631251b60d8ff0a80b45aca3921ee03a61fc
push time in 3 hours agogatsby-cloud[bot] in miraclecheesebunnies/gatsby-starter-default create branch main
gatsby-cloud[bot] push geoct826/gatsby-starter-minimal-blog
commit sha: b917a09a25931443b1bfef28aa798867e604b700
push time in 3 hours agogatsby-cloud[bot] in geoct826/gatsby-starter-minimal-blog create branch main
gatsby-cloud[bot] issue comment ethereum/ethereum-org-website
ethereum-org-website-dev
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 18m
gatsby-cloud[bot] issue comment ethereum/ethereum-org-website
ethereum-org-website-dev
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 17m
gatsby-cloud[bot] issue comment hackistic/DF-Digital
This PR was automatically created by Snyk using the credentials of a real user.
:information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
🔕 Ignore this dependency or unsubscribe from future upgrade PRs
:triangular_flag_on_post: Your build failed. See the build logs here
Errors
Incremental builds only support [email protected]>=2.20.4. You are using [email protected]
gatsby-cloud[bot] issue comment ethereum/ethereum-org-website
ethereum-org-website-dev
:tada: Your build was successful! See the Deploy preview here.
:clock1: Build time: 16m
gatsby-cloud[bot] push alexdruhet/consortiumskate31
commit sha: 0d3738e80b5acb8cce000aae8582e56d012945c6
push time in 5 hours ago
Daily release 05 20 22 afternoon