π File detail
utils/bash/specs/index.ts
π§© .tsπ 19 linesπΎ 380 bytesπ text
β Back to All Filesπ― Use case
This file lives under βutils/β, which covers cross-cutting helpers (shell, tempfiles, settings, messages, process input, β¦). It primarily provides a default export (component, class, or entry function). It composes internal code from registry, alias, nohup, pyright, and sleep (relative imports).
Generated from folder role, exports, dependency roots, and inline comments β not hand-reviewed for every path.
π§ Inline summary
import type { CommandSpec } from '../registry.js' import alias from './alias.js' import nohup from './nohup.js' import pyright from './pyright.js' import sleep from './sleep.js'
π€ Exports (heuristic)
default
π₯οΈ Source preview
import type { CommandSpec } from '../registry.js'
import alias from './alias.js'
import nohup from './nohup.js'
import pyright from './pyright.js'
import sleep from './sleep.js'
import srun from './srun.js'
import time from './time.js'
import timeout from './timeout.js'
export default [
pyright,
timeout,
sleep,
alias,
nohup,
time,
srun,
] satisfies CommandSpec[]