monorepo

monorepo

Популярно

Monorepo script commands and conventions for this codebase. Use when running builds, tests, formatting, linting, or type checking.

4Kзвезд
268форков
Обновлено 1/27/2026
SKILL.md
readonlyread-only
name
monorepo
description

Monorepo script commands and conventions for this codebase. Use when running builds, tests, formatting, linting, or type checking.

Script Commands

The monorepo uses consistent script naming conventions:

Command Purpose When to use
bun format Fix formatting (biome + prettier) Development
bun format:check Check formatting CI
bun lint Fix lint issues (eslint + biome) Development
bun lint:check Check lint issues CI
bun typecheck Type checking (tsc, svelte-check, astro check) Both

Convention

  • No suffix = fix (modifies files)
  • :check suffix = check only (for CI, no modifications)
  • typecheck alone = type checking (separate concern, cannot auto-fix)

After Completing Code Changes

Run type checking to verify:

bun typecheck

This runs turbo run typecheck which executes the typecheck script in each package (e.g., tsc --noEmit, svelte-check).

You Might Also Like

Related Skills

verify

verify

243K

Use when you want to validate changes before committing, or when you need to check all React contribution requirements.

test

test

243K

Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.

Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.

Use when adding new error messages to React, or seeing "unknown error code" warnings.

flow

flow

243K

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

flags

flags

243K

Use when you need to check feature flag states, compare channels, or debug why a feature behaves differently across release channels.