Skip to content

Commit

Permalink
Removed semis
Browse files Browse the repository at this point in the history
  • Loading branch information
travis-r6s committed Sep 18, 2018
1 parent e45d3fd commit 5da0201
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gatsby-node.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const path = require(`path`);
const { createFilePath } = require(`gatsby-source-filesystem`);
const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)

exports.onCreateNode = ({ node, getNode, actions }) => {
const { createNodeField } = actions
Expand All @@ -11,7 +11,7 @@ exports.onCreateNode = ({ node, getNode, actions }) => {
value: slug,
})
}
};
}

exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
Expand Down Expand Up @@ -124,4 +124,4 @@ exports.createPages = ({ graphql, actions }) => {
resolve()
})
})
};
}

0 comments on commit 5da0201

Please sign in to comment.