rushstack icon indicating copy to clipboard operation
rushstack copied to clipboard

Monorepo for tools developed by the Rush Stack community

Results 450 rushstack issues
Sort by recently updated
recently updated
newest added

## Summary Allow monorepo maintainers to fold long build logs in CI using simple header and footer environment variables. Fixes #2198. ## Details Since this behavior typically doesn't make sense...

## Summary As @elliot-nelson pointed out at https://github.com/microsoft/rushstack/pull/3554#issuecomment-1325058523, `rush-pnpm patch-commit` fails when running it from the root of monorepo, this PR makes `rush-pnpm patch-commit` works from the repo root folder....

## Summary This PR proposes specifying custom remainder for commands and phases in "command-line.json" ## Details - Add "remainders" property in "command-line.json" - Each item in "remainders" associates with commands...

@elliot-nelson ## Summary This PR converts most enums in the `rush-lib` project to object constants with a merged type. This improves typesafety. For example: ```TypeScript import { BumpType } from...

## Summary A work in progress draft of the _change experience provider_ plugin. Implements features described in #3725. ## Details There's three main areas of interest in this PR: 1....

ES-modules forces you to reference `index.js` file when importing a directory: ```typescript import { foo } from '../../packlets/foo/index.js'; ``` This PR updates the packlets plugin to treat those as valid...

This PR introduces an unpublished (for now) Heft plugin that handles localization files the same way our Webpack localization plugin does, and it extracts a few strings from Rush's CLI...

## Summary Structures the `FileSystem` collection of functions as a namespace internally and moves each implementation to its own file so that ESM-aware bundlers (like webpack or esbuild) can tree-shake...

## Summary Fixes https://github.com/microsoft/rushstack/issues/3190 ## Details ~~Adding a `initializeFeatureKind` lifecycle to PluginManager. Plugin defines `featureKinds: ['build-cache-provider']` will be initialized right before trying to load `BuildCacheConfiguration`.~~ Adding a new concept `Contribution...

## Summary Implements the design in https://github.com/microsoft/rushstack/issues/3209 ## How it was tested Moved the test to its own project and verified that it still works.