chore: remove unused imports (#1534)

This commit is contained in:
Caleb
2018-07-28 14:33:42 -06:00
committed by Shawn Erquhart
parent 99d4b2b50c
commit 4f6e8cea44
44 changed files with 33 additions and 83 deletions

View File

@ -1,7 +1,7 @@
import { localForage, unsentRequest, then, APIError, Cursor } from "netlify-cms-lib-util";
import { Base64 } from "js-base64";
import { fromJS, List, Map } from "immutable";
import { cond, flow, isString, partial, partialRight, pick, omit, set, update, get } from "lodash";
import { List, Map } from "immutable";
import { flow, partial, pick, get } from "lodash";
export default class API {
constructor(config) {

View File

@ -1,6 +1,6 @@
import trimStart from 'lodash/trimStart';
import semaphore from "semaphore";
import { fileExtension, Cursor, CURSOR_COMPATIBILITY_SYMBOL } from 'netlify-cms-lib-util';
import { CURSOR_COMPATIBILITY_SYMBOL } from 'netlify-cms-lib-util';
import AuthenticationPage from "./AuthenticationPage";
import API from "./API";