@code-pushup/cli
Version:
A CLI to run all kinds of code quality measurements to align your team with company goals
21 lines • 917 B
JavaScript
import { yargsAutorunCommandObject } from './autorun/autorun-command.js';
import { yargsCollectCommandObject } from './collect/collect-command.js';
import { yargsCompareCommandObject } from './compare/compare-command.js';
import { yargsHistoryCommandObject } from './history/history-command.js';
import { yargsMergeDiffsCommandObject } from './merge-diffs/merge-diffs-command.js';
import { yargsPrintConfigCommandObject } from './print-config/print-config-command.js';
import { yargsUploadCommandObject } from './upload/upload-command.js';
export const commands = [
{
...yargsAutorunCommandObject(),
command: '*',
},
yargsAutorunCommandObject(),
yargsCollectCommandObject(),
yargsUploadCommandObject(),
yargsHistoryCommandObject(),
yargsCompareCommandObject(),
yargsPrintConfigCommandObject(),
yargsMergeDiffsCommandObject(),
];
//# sourceMappingURL=commands.js.map