fix: correct some re-exports which were breaking things
This commit is contained in:
parent
c77273742b
commit
203ab791f2
1 changed files with 4 additions and 4 deletions
|
@ -25,6 +25,10 @@ import { rebuildMerkleHash } from './repair';
|
||||||
const { PostError, SyncError } = require('../errors');
|
const { PostError, SyncError } = require('../errors');
|
||||||
const connection = require('../../platform/server/connection');
|
const connection = require('../../platform/server/connection');
|
||||||
|
|
||||||
|
export { default as makeTestMessage } from './make-test-message';
|
||||||
|
export { default as resetSync } from './reset';
|
||||||
|
export { default as repairSync } from './repair';
|
||||||
|
|
||||||
let FULL_SYNC_DELAY = 1000;
|
let FULL_SYNC_DELAY = 1000;
|
||||||
let SYNCING_MODE = 'enabled';
|
let SYNCING_MODE = 'enabled';
|
||||||
|
|
||||||
|
@ -64,10 +68,6 @@ export function checkSyncingMode(mode) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export makeTestMessage from './make-test-message';
|
|
||||||
export resetSync from './reset';
|
|
||||||
export repairSync from './repair';
|
|
||||||
|
|
||||||
function apply(msg, prev) {
|
function apply(msg, prev) {
|
||||||
let { dataset, row, column, value } = msg;
|
let { dataset, row, column, value } = msg;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue