@code-pushup/cli
Version:
A CLI to run all kinds of code quality measurements to align your team with company goals
12 lines (10 loc) • 412 B
JavaScript
/**
* This file serves as the CLI entry point.
*
* We use a separate bin file (instead of pointing directly to src/index.js)
* because TypeScript build processes don't preserve file permissions.
* By tracking this file in git with executable permissions (+x), we ensure
* the CLI remains executable after npm publish without needing post-install scripts.
*/
import '../src/index.js';