Home / File/ index.ts — tailwindcss Source File

index.ts — tailwindcss Source File

Architecture documentation for index.ts, a typescript file in the tailwindcss codebase. 8 imports, 1 dependents.

File typescript UpgradeToolkit TemplateAnalysis 8 imports 1 dependents 1 functions

Entity Profile

Dependency Diagram

graph LR
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560["index.ts"]
  2dcceaf3_4383_df7d_023d_fa36fab3c61a["args.ts"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> 2dcceaf3_4383_df7d_023d_fa36fab3c61a
  9106c15d_cfb8_77f5_665e_9707020b48c8["renderer.ts"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> 9106c15d_cfb8_77f5_665e_9707020b48c8
  19af1556_b46b_c92f_5197_2a29af9d42a2["header"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> 19af1556_b46b_c92f_5197_2a29af9d42a2
  a81de696_6bb5_40db_26ca_1d707ccebed9["highlight"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> a81de696_6bb5_40db_26ca_1d707ccebed9
  9383215e_0eb6_1914_b650_236ad8ecef8e["indent"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> 9383215e_0eb6_1914_b650_236ad8ecef8e
  29800e0d_041f_9aaf_e641_3569e35221f6["println"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> 29800e0d_041f_9aaf_e641_3569e35221f6
  fc3d860f_324c_425a_d170_9245800aea98["wordWrap"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> fc3d860f_324c_425a_d170_9245800aea98
  df14e640_fe39_56d9_0c45_b1a15ec4e9c9["picocolors"]
  c2db3112_cd69_dad3_1ec1_c1fb9b72a560 --> df14e640_fe39_56d9_0c45_b1a15ec4e9c9
  b2eb6cbf_d28d_9ec7_61c1_8992d8f4efb8["index.ts"]
  b2eb6cbf_d28d_9ec7_61c1_8992d8f4efb8 --> c2db3112_cd69_dad3_1ec1_c1fb9b72a560
  style c2db3112_cd69_dad3_1ec1_c1fb9b72a560 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import pc from 'picocolors'
import type { Arg } from '../../utils/args'
import { UI, header, highlight, indent, println, wordWrap } from '../../utils/renderer'

export function help({
  invalid,
  usage,
  options,
}: {
  invalid?: string
  usage?: string[]
  options?: Arg
}) {
  // Available terminal width
  let width = process.stdout.columns

  // Render header
  println(header())

  // Render the invalid command
  if (invalid) {
    println()
    println(`${pc.dim('Invalid command:')} ${invalid}`)
  }

  // Render usage
  if (usage && usage.length > 0) {
    println()
    println(pc.dim('Usage:'))
    for (let [idx, example] of usage.entries()) {
      // Split the usage example into the command and its options. This allows
      // us to wrap the options based on the available width of the terminal.
      let command = example.slice(0, example.indexOf('['))
      let options = example.slice(example.indexOf('['))

      // Make the options dimmed, to make them stand out less than the command
      // itself.
      options = options.replace(/\[.*?\]/g, (option) => pc.dim(option))

      // The space between the command and the options.
      let space = 1

      // Wrap the options based on the available width of the terminal.
      let lines = wordWrap(options, width - UI.indent - command.length - space)

      // Print an empty line between the usage examples if we need to split due
      // to width constraints. This ensures that the usage examples are visually
      // separated.
      //
      // E.g.: when enough space is available
      //
      // ```
      //   Usage:
      //     tailwindcss build [--input input.css] [--output output.css] [--watch] [options...]
      //     tailwindcss other [--watch] [options...]
      // ```
      //
      // E.g.: when not enough space is available
      //
      // ```
// ... (111 more lines)

Subdomains

Functions

Frequently Asked Questions

What does index.ts do?
index.ts is a source file in the tailwindcss codebase, written in typescript. It belongs to the UpgradeToolkit domain, TemplateAnalysis subdomain.
What functions are defined in index.ts?
index.ts defines 1 function(s): help.
What does index.ts depend on?
index.ts imports 8 module(s): args.ts, header, highlight, indent, picocolors, println, renderer.ts, wordWrap.
What files import index.ts?
index.ts is imported by 1 file(s): index.ts.
Where is index.ts in the architecture?
index.ts is located at packages/@tailwindcss-upgrade/src/commands/help/index.ts (domain: UpgradeToolkit, subdomain: TemplateAnalysis, directory: packages/@tailwindcss-upgrade/src/commands/help).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free