UNPKG

@puls-atlas/cli

Version:

The Puls Atlas CLI tool for managing Atlas projects

9 lines 283 B
import { runAiSync } from './syncRuntime.js'; export default async (options, dependencies = {}) => { const runAiSyncImpl = dependencies.runAiSync ?? runAiSync; const result = await runAiSyncImpl(options); if (result === null) { process.exitCode = 1; } return result; };