πŸ“„ 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[]