@electric-sql/cli
Version:
ElectricSQL command line interface (CLI).
14 lines • 407 B
JavaScript
import { Command } from "commander";
import { getConfig, printConfig } from '../config.js';
function makeShowConfigCommand() {
return new Command("show-config").description("Show the current configuration").action(showConfig);
}
function showConfig() {
const config = getConfig();
printConfig(config);
}
export {
makeShowConfigCommand,
showConfig
};
//# sourceMappingURL=command-show-config.js.map