rushstack-best-practices

作者: microsoft

提供使用 Rush 单体仓库的最佳实践和指导。当用户在基于 Rush 的仓库中工作、询问 Rush 命令时使用…

npx skills add https://github.com/microsoft/rushstack --skill rushstack-best-practices

Rushstack Best Practices

This skill provides essential best practices for working with Rush monorepos. Following these guidelines ensures efficient dependency management, optimal build performance, and proper command usage.

Important Guidelines

When encountering unclear issues or questions:

  1. Never make assumptions - If unsure about Rush behavior, configuration, or commands
  2. Search official resources first - Check documentation and existing issues before guessing
  3. Provide accurate information - Base responses on verified sources, not assumptions
  4. Ask for clarification - When the problem description is ambiguous or incomplete

Core Principles

  1. Always use Rush commands - Avoid npm/pnpm/yarn directly in a Rush monorepo
  2. Use rushx for single projects - Like npm run, but Rush-aware
  3. rush install vs update - install for CI, update after changes
  4. rush build vs rebuild - build for incremental, rebuild for clean
  5. Projects at 2 levels - Standard: apps/, libraries/, tools/
  6. Selection flags reduce scope - Use --to, --from, --impacted-by
  7. Build cache is automatic - Configure output folders to enable
  8. Subspace for large repos - Isolate dependencies when needed

Project Selection Best Practices

When running commands like install, update, build, rebuild, etc., by default all projects under the entire repository are processed. Use these selection flags to improve efficiency:

--to

Select specified project and all its dependencies.

  • Build specific project and its dependencies
  • Ensure complete dependency chain build
rush build --to @my-company/my-project
rush build --to my-project  # If project name is unique
rush build --to .            # Use current directory's project

--to-except

Select all dependencies of specified project, but not the project itself.

  • Update project dependencies without processing project itself
  • Pre-build dependencies
rush build --to-except @my-company/my-project

--from

Select specified project and all its downstream dependencies.

  • Validate changes' impact on downstream projects
  • Build all projects affected by specific project
rush build --from @my-company/my-library

--impacted-by

Select projects that might be affected by specified project changes, excluding dependencies.

  • Quick test of project change impacts
  • Use when dependency status is already correct
rush build --impacted-by @my-company/my-library

--impacted-by-except

Similar to --impacted-by, but excludes specified project itself.

  • Project itself has been manually built
  • Only need to test downstream impacts
rush build --impacted-by-except @my-company/my-library

--only

Only select specified project, completely ignore dependency relationships.

  • Dependency status is known to be correct
  • Combine with other selection parameters
rush build --only @my-company/my-project
rush build --impacted-by projectA --only projectB

Command Usage Guidelines

Command Tool Selection

Choose the correct command tool based on different scenarios:

  1. rush command - Execute operations affecting the entire repository or multiple projects

    • Strict parameter validation and documentation
    • Support for global and batch commands
    • Suitable for standardized workflows
    • Use cases: Dependency installation, building, publishing
  2. rushx command - Execute specific scripts for a single project

    • Similar to npm run or pnpm run
    • Uses Rush version selector for toolchain consistency
    • Prepares shell environment based on Rush configuration
    • Use cases: Running project-specific build scripts, tests, dev servers
  3. rush-pnpm command - Replace direct use of pnpm in Rush repository

    • Sets correct PNPM workspace context
    • Supports Rush-specific enhancements
    • Provides compatibility checks with Rush
    • Use cases: When direct PNPM commands are needed

Install vs Update

CommandBehaviorWhen to Use
rush updateUpdates shrinkwrap, installs new dependenciesAfter cloning, after git pull, after modifying package.json
rush installRead-only install from existing shrinkwrapCI/CD pipelines, ensuring version consistency

Build vs Rebuild

CommandBehaviorWhen to Use
rush buildIncremental build, only changed projectsDaily development, quick validation
rush rebuildClean build all projectsComplete rebuild needed, investigating issues

Dependency Management

Package Manager Selection

Choose in rush.json:

{
  "pnpmVersion": "8.x.x"     // Preferred - efficient, strict
  // "npmVersion": "8.x.x"   // Alternative
  // "yarnVersion": "1.x.x"  // Alternative
}

Version Constraints

Configure in common/config/subspaces/<subspace>/common-versions.json:

{
  "preferredVersions": {
    "react": "17.0.2",
    "typescript": "~4.5.0"
  },
  "implicitlyPreferredVersions": true,
  "allowedAlternativeVersions": {
    "typescript": ["~4.5.0", "~4.6.0"]
  }
}

Adding/Removing Dependencies

Always use Rush commands, not npm/pnpm directly:

rush add -p lodash --dev      # Add dev dependency
rush add -p react --exact     # Add exact version
rush remove -p lodash         # Remove dependency

Build Cache Configuration

Configure in <project>/config/rush-project.json:

{
  "operationSettings": [
    {
      "operationName": "build",
      "outputFolderNames": ["lib", "dist"],
      "disableBuildCacheForOperation": false,
      "dependsOnEnvVars": ["MY_ENV_VAR"]
    }
  ]
}

Cache Behavior:

  • Cache stored in common/temp/build-cache
  • Invalidated by: source changes, dependency changes, env vars, command params
  • Parallel builds supported via enableParallelism

Troubleshooting

Dependency Issues

  • Avoid npm, pnpm, yarn - use Rush commands
  • Run rush purge to clean environment
  • Run rush update --recheck to force dependency check

Build Issues

  • Use rush rebuild to skip cache
  • Check rushx build output for specific errors
  • Use --verbose for detailed logs

Performance Issues

  • Use selection flags (--to, --from, etc.) to reduce scope
  • Enable build cache in rush-project.json
  • Consider subspace for very large monorepos

Subspace for Large Monorepos

What is Subspace:

  • Allows multiple PNPM lock files in one Rush monorepo
  • Enables independent dependency management per team/project group
  • Reduces risk from dependency updates
  • Improves install/update performance

When to Use:

  • Large monorepos (50+ projects)
  • Multiple teams with different dependency needs
  • Conflicting version requirements
  • Need for faster dependency operations

Official Resources

Documentation & References

Official Websites:

Search Existing Issues:

When to Search vs. Ask

Search these resources first when:

  • Encountering error messages
  • Unsure about configuration options
  • Looking for examples or tutorials
  • Need to understand Rush behavior

Ask the user for clarification when:

  • The specific use case is unclear
  • Multiple approaches are possible
  • Context is missing to provide accurate guidance
  • The issue might be environment-specific

Detailed References

For expanded information on specific domains, see:

  • references/core-commands.md - Detailed command reference
  • references/project-configuration.md - Configuration file specifications
  • references/dependency-management.md - Advanced dependency patterns
  • references/build-system.md - Build optimization and caching
  • references/subspace.md - Subspace setup and usage

来自 microsoft 的更多技能

oss-growth
microsoft
OSS增长黑客角色
official
microsoft-foundry
microsoft
端到端部署、评估和管理Foundry代理:Docker构建、ACR推送、托管/提示代理创建、容器启动、批量评估、持续评估、提示优化工作流、agent.yaml、从追踪中整理数据集。用途:将代理部署到Foundry、托管代理、创建代理、调用代理、评估代理、运行批量评估、持续评估、持续监控、持续评估状态、优化提示、改进提示、提示优化器、优化代理指令、改进代理...
officialdevelopmentdevops
azure-ai
microsoft
用于Azure AI:搜索、语音、OpenAI、文档智能。支持搜索、向量/混合搜索、语音转文字、文字转语音、转录、OCR。适用场景:AI搜索、查询搜索、向量搜索、混合搜索、语义搜索、语音转文字、文字转语音、转录、OCR、文字转语音。
officialdevelopmentapi
azure-deploy
microsoft
对已准备好的应用程序执行Azure部署,这些程序需包含现有的.azure/deployment-plan.md和基础设施文件。当用户要求创建新应用程序时,请勿使用此技能——应改用azure-prepare。此技能运行azd up、azd deploy、terraform apply和az deployment命令,并内置错误恢复机制。需要来自azure-prepare的.azure/deployment-plan.md以及来自azure-validate的已验证状态。适用场景:"运行azd up"、"运行azd deploy"、"执行部署"...
officialdevopsaws
azure-storage
microsoft
Azure存储服务,包括Blob存储、文件共享、队列存储、表存储和Data Lake。解答关于存储访问层(热、冷、冷、归档)的问题,说明各层的使用场景及对比。提供对象存储、SMB文件共享、异步消息传递、NoSQL键值存储和大数据分析。包含生命周期管理。用途:Blob存储、文件共享、队列存储、表存储、Data Lake、上传文件、下载Blob、存储账户、访问层等。
officialdevelopmentdatabase
azure-diagnostics
microsoft
使用AppLens、Azure Monitor、资源健康和安全分类调试Azure生产问题。适用场景:调试生产问题、排查应用服务、应用服务CPU过高、应用服务部署失败、排查容器应用、排查函数、排查AKS、kubectl无法连接、kube-system/CoreDNS故障、Pod挂起、CrashLoop、节点未就绪、升级失败、分析日志、KQL、洞察、镜像拉取失败、冷启动问题、健康探测失败……
officialdevopsdevelopment
azure-prepare
microsoft
为Azure应用准备部署(基础设施Bicep/Terraform、azure.yaml、Dockerfile)。用于创建/现代化或创建+部署;不用于跨云迁移(使用azure-cloud-migrate)。请勿用于:copilot-sdk应用(使用azure-hosted-copilot-sdk)。适用场景:"创建应用"、"构建Web应用"、"创建API"、"创建无服务器HTTP API"、"创建前端"、"创建后端"、"构建服务"、"现代化应用"、"更新应用"、"添加身份验证"、"添加缓存"、"托管在Azure上"、"创建并...
officialdevelopmentdevops
azure-validate
microsoft
部署前对Azure就绪状态进行验证。对配置、基础设施(Bicep或Terraform)、RBAC角色分配、托管标识权限及先决条件进行深度检查,然后再部署。适用场景:验证我的应用、检查部署就绪状态、运行预检、验证配置、检查是否可部署、验证azure.yaml、验证Bicep、部署前测试、排查部署错误、验证Azure Functions、验证函数应用、验证无服务器...
officialdevopstesting