@electric-sql/cli
Version:
ElectricSQL command line interface (CLI).
23 lines • 757 B
JavaScript
import { loadMigrations } from './migrations/builder.js';
import { generate } from './migrations/command-generate.js';
import { start } from './docker-commands/command-start.js';
import { stop } from './docker-commands/command-stop.js';
import { status } from './docker-commands/command-status.js';
import { psql } from './docker-commands/command-psql.js';
import { showConfig } from './configure/command-show-config.js';
import { withConfig } from './configure/command-with-config.js';
import { proxyTunnel } from './tunnel/command-proxy-tunnel.js';
import { getConfig } from './config.js';
export {
generate,
getConfig,
loadMigrations,
proxyTunnel,
psql,
showConfig,
start,
status,
stop,
withConfig
};
//# sourceMappingURL=index.js.map