Skip to content

Commit 34f4173

Browse files
committed
chore: consistent style
1 parent dc6e0be commit 34f4173

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/gatsby-node.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const jsYaml = require('js-yaml');
44
const _ = require(`lodash`);
55

66
async function onCreateNode({ node, boundActionCreators, loadNodeContent }) {
7-
const { createNode, createParentChildLink } = boundActionCreators
7+
const { createNode, createParentChildLink } = boundActionCreators;
88

99
if (node.internal.mediaType !== 'text/yaml') {
1010
return;
@@ -27,8 +27,8 @@ async function onCreateNode({ node, boundActionCreators, loadNodeContent }) {
2727
},
2828
};
2929

30-
createNode(yamlNode)
31-
createParentChildLink({ parent: node, child: yamlNode })
30+
createNode(yamlNode);
31+
createParentChildLink({ parent: node, child: yamlNode });
3232
}
3333

3434
exports.onCreateNode = onCreateNode;

0 commit comments

Comments
 (0)