Merge pull request #1516 from coralproject/coral-docs

Removed unused coral-docs
This commit is contained in:
Wyatt Johnson
2018-04-11 11:33:33 -06:00
committed by GitHub
3 changed files with 1 additions and 19 deletions
-8
View File
@@ -1,8 +0,0 @@
import React from 'react';
import { render } from 'react-dom';
import { GraphQLDocs } from 'graphql-docs';
import fetcher from './services/fetcher';
// Render the application into the DOM
render(<GraphQLDocs fetcher={fetcher} />, document.querySelector('#root'));
-10
View File
@@ -1,10 +0,0 @@
export default function fetcher(query) {
return fetch(`${window.location.origin}/api/v1/graph/ql`, {
method: 'POST',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify({ query }),
}).then(res => res.json());
}
+1 -1
View File
@@ -1,7 +1,7 @@
const path = require('path');
const { pluginsPath } = require('./plugins');
const buildTargets = ['coral-admin', 'coral-docs'];
const buildTargets = ['coral-admin'];
const buildEmbeds = ['stream'];