Move URLGrammar and PostmanCollection into CLI dir

They're not used anywhere in quicktype core.
This commit is contained in:
Mark Probst 2018-04-28 21:08:15 -07:00
Родитель 6668129e27
Коммит d7f77a2f6e
3 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -24,7 +24,7 @@ import {
} from "../TypeSource";
import { OptionDefinition } from "../RendererOptions";
import * as defaultTargetLanguages from "../Language/All";
import { urlsFromURLGrammar } from "../Input/URLGrammar";
import { urlsFromURLGrammar } from "./URLGrammar";
import { Annotation } from "../Source";
import { IssueAnnotationData } from "../Annotation";
import { Readable } from "stream";
@ -32,7 +32,7 @@ import { panic, assert, defined, withDefault, mapOptional, assertNever, parseJSO
import { introspectServer } from "../GraphQLIntrospection";
import { getStream } from "../get-stream/index";
import { train } from "../MarkovChain";
import { sourcesFromPostmanCollection } from "../Input/PostmanCollection";
import { sourcesFromPostmanCollection } from "./PostmanCollection";
import { readableFromFileOrURL, readFromFileOrURL, FetchingJSONSchemaStore } from "./NodeIO";
import * as telemetry from "./telemetry";
import { ErrorMessage, messageError, messageAssert } from "../Messages";