Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Ward Peeters <ward@coding-tech.com>
  • Loading branch information
pieh and wardpeet authored Oct 23, 2020
1 parent 778e214 commit 33729b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby-recipes/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default [
excludeDevTools(),
json(),
babel({
babelHelpers: `runtime`,
babelHelpers: `bundled`,
skipPreflightCheck: true,
exclude: `node_modules/**`,
}),
Expand Down Expand Up @@ -103,7 +103,7 @@ export default [
},
plugins: [
babel({
babelHelpers: `runtime`,
babelHelpers: `bundled`,
skipPreflightCheck: true,
exclude: `node_modules/**`,
}),
Expand Down
13 changes: 4 additions & 9 deletions packages/gatsby-recipes/src/joi-to-graphql/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import transmuteType from "./methods/compose-type"
import transmuteSchema from "./methods/compose-schema"

export {
transmuteType,
transmuteType as type,
transmuteSchema,
transmuteSchema as schema,
}
export { default as transmuteType } from "./methods/compose-type"
export { default as type } from "./methods/compose-type"
export { default as transmuteSchema } from "./methods/compose-schema"
export { default as schema} from "./methods/compose-schema"

0 comments on commit 33729b8

Please sign in to comment.