Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NogsMPLS committed Feb 27, 2016
1 parent 728710f commit 7c7bf5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/gatsby-build.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

require('babel/register')({
only: ["gatsby/lib"]
only: ['gatsby/lib'],
})
require('./build')
2 changes: 1 addition & 1 deletion bin/gatsby-develop.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

require('babel/register')({
only: ["gatsby/lib"]
only: ['gatsby/lib'],
})
require('./develop')
2 changes: 1 addition & 1 deletion bin/gatsby-new.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env node

require('babel/register')({
only: ["gatsby/lib"]
only: ['gatsby/lib'],
})
require('./new')

0 comments on commit 7c7bf5f

Please sign in to comment.