/** * Stack Version Pin Scanfix * * Dev-only guardrail for the dev-direct deploy model. Since the dev machine is * the sole source of truth for generated docker-compose.yml / nginx.conf shipped * to prod, a stale `@factiii/stack` CLI here silently ships a bad artifact. * * The pin lives in stackAuto.yml under `stack_version`. It's auto-bootstrapped * on first run, then becomes the contract for every subsequent dev machine: * - pin missing → fix writes it (first-run bootstrap) * - pin matches → no issue * - pin mismatches → critical, fix=null (user bumps `@factiii/stack` or the pin) * * Runs only on dev. If dev fails this check, scan blocks the whole chain — * deploy never touches staging or prod with the wrong CLI. */ import type { Fix } from '../../../../types/index.js'; export declare const stackVersionPinFixes: Fix[]; //# sourceMappingURL=stack-version-pin.d.ts.map