style: run linter (#232)
This commit is contained in:
parent
0fcfffea57
commit
01d0eb2f0a
2 changed files with 9 additions and 13 deletions
|
@ -1,10 +1,10 @@
|
||||||
export {
|
export {
|
||||||
convertForInsert,
|
convertForInsert,
|
||||||
convertForUpdate,
|
convertForUpdate,
|
||||||
convertFromSelect,
|
convertFromSelect,
|
||||||
convertInputType,
|
convertInputType
|
||||||
} from './schema-helpers';
|
} from './schema-helpers';
|
||||||
export { compileQuery } from "./compiler";
|
export { compileQuery } from './compiler';
|
||||||
export { makeViews } from "./views";
|
export { makeViews } from './views';
|
||||||
export { schema, schemaConfig } from "./schema";
|
export { schema, schemaConfig } from './schema';
|
||||||
export { runQuery, runCompiledQuery } from "./schema/run-query";
|
export { runQuery, runCompiledQuery } from './schema/run-query';
|
||||||
|
|
|
@ -19,11 +19,7 @@ import {
|
||||||
makeClientId,
|
makeClientId,
|
||||||
Timestamp
|
Timestamp
|
||||||
} from '../crdt';
|
} from '../crdt';
|
||||||
import {
|
import { convertForInsert, convertForUpdate, convertFromSelect } from '../aql';
|
||||||
convertForInsert,
|
|
||||||
convertForUpdate,
|
|
||||||
convertFromSelect
|
|
||||||
} from '../aql';
|
|
||||||
import { shoveSortOrders, SORT_INCREMENT } from './sort';
|
import { shoveSortOrders, SORT_INCREMENT } from './sort';
|
||||||
|
|
||||||
export { toDateRepr, fromDateRepr } from '../models';
|
export { toDateRepr, fromDateRepr } from '../models';
|
||||||
|
|
Loading…
Reference in a new issue