UNPKG

@puls-atlas/cli

Version:

The Puls Atlas CLI tool for managing Atlas projects

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