rushstack
rushstack copied to clipboard
Monorepo for tools developed by the Rush Stack community
## Summary RushStack VSCode Extention ## Details Fixes https://github.com/microsoft/rushstack/issues/3157 ## How to develop in local 1. Prepare ``` rush update rush build --to rushstack ``` 2. Run predefined launcher in...
Fixes https://github.com/microsoft/rushstack/issues/3121 ## Summary The packlets plugin checks local imports to ensure that we only import local code from other packlets — but there is a common edge case in...
This PR simply changes the extractor message detailing the TS version used in the analysis from the `info` level into the `verbose` level. When using the `api-extractor` in parallel generating...
## Summary Added an initial implementation of a [Workbox](https://developers.google.com/web/tools/workbox) plugin for heft. ## Details Workbox is a suite of tools and libraries to help assist in producing serviceworkers for PWAs....
## Summary Added an initial implementation of a browsersync plugin for heft. ## Details [Browsersync](https://browsersync.io/) provides a capable test/dev webserver, supporting live reload, form replication and click mirroring, making it...
## Summary Added an initial implementation of an [esbuild](https://esbuild.github.io/) plugin for heft. ## Details This plugin currently uses the `compile` `run` hook to execute an esbuild build command. I used...
## Summary fixes #3002 ```ts export interface MyInterface { /** this is supported */ str: string; } export type MyType = { /** this is not supported */ str: string;...
## Summary Add `--ignore-scripts` option for `rush update` and `rush install`. when specify `--ignore-scripts` , do not execute any scripts defined in the project package.json and its dependencies. ## Details...
## Summary Allows custom bulk script commands to specify fallback alternatives for build cache reads. For example a command "build-incremental" might fall back to "build". Allows custom parameters to specify...
## Summary Adds `dependencyVersionDefaults` to `common-versions.json`, to be consumed by `rush add` for determining a user-defined default semver style. ## Details It's sometimes desired to specify different default semver styles...