providence-analytics
Version:
Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes
10 lines (8 loc) • 333 B
JavaScript
import { cli } from './cli.js';
import { providenceConfUtil } from '../program/utils/providence-conf-util.js';
(async () => {
// We need to provide config to cli, until whole package is rewritten as ESM.
const { providenceConf } = (await providenceConfUtil.getConf()) || {};
cli({ providenceConf });
})();