Skip to content

Commit

Permalink
fix(gatsby-plugin-graphql-config): add dependencies (#26970)
Browse files Browse the repository at this point in the history
Co-authored-by: gatsbybot <mathews.kyle+gatsbybot@gmail.com>
  • Loading branch information
wardpeet and gatsbybot committed Sep 21, 2020
1 parent ece4a6e commit 5c5c045
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
3 changes: 3 additions & 0 deletions packages/gatsby-plugin-graphql-config/.npmignore
Expand Up @@ -32,3 +32,6 @@ flow-typed
coverage
decls
examples
.eslintrc
.babelrc
tsconfig.json
16 changes: 10 additions & 6 deletions packages/gatsby-plugin-graphql-config/package.json
@@ -1,18 +1,22 @@
{
"name": "gatsby-plugin-graphql-config",
"description": "Gatsby plugin to write out a graphql-config with develop process endpoint configured",
"version": "1.0.0",
"version": "0.0.0",
"author": "Rikki Schulte <rikki.schulte@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"babel-preset-gatsby-package": "^0.5.2",
"cpx": "^1.5.0",
"cross-env": "^5.2.1",
"rewire": "^4.0.1"
"cross-env": "^5.2.1"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-graphql-config#readme",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-graphql-config/src/gatsby-node.ts
@@ -1,6 +1,6 @@
import * as fs from "fs-extra"
import { resolve, join } from "path"
import { GraphQLSchema, printSchema } from "graphql"
import { GraphQLSchema, printSchema } from "gatsby/graphql"
import type { GatsbyReduxStore } from "gatsby/src/redux"
import type { IStateProgram } from "gatsby/src/internal"

Expand Down

0 comments on commit 5c5c045

Please sign in to comment.