| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent a4666ad commit feafdbd
5 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -99,3 +99,13 @@ I'd like to remind everyone that **you only have reproducible installs if you us | |||
| 99 | 99 | ||
| 100 | 100 | **It is your responsibility as a library consumer to use lockfiles**. No one wants to do a release with bugs but it sometimes happens, and the best we can do is to fix it as fast as possible with a new release. When you have a couple of thousand total dependencies it is only a matter of time until one of them has a bad release. | |
| 101 | 101 | ``` | |
| 102 | + | ||
| 103 | + ## Angular CLI: Spam (v1) | ||
| 104 | + | ||
| 105 | + ``` | ||
| 106 | + Woah, looks like you've opened a lot of issues/PRs recently. While we appreciate contributions from the community, triaging and reviewing a large influx of content in a short time period takes time away from other ongoing projects. As a result, we're closing these issues/PRs to maintain the team's focus. | ||
| 107 | + | ||
| 108 | + Note that this is not necessarily a rejection of the goals or direction of any of these contributions in particular, so much as a reflection of the team's current capacity and priorities. | ||
| 109 | + | ||
| 110 | + You are welcome to open a smaller subset of issues/PRs in accordance with [our policy](https://github.com/angular/angular/blob/main/contributing-docs/spam.md) focused on the most important and impactful contributions and we will do our best to prioritize a response as soon as possible. | ||
| 111 | + ``` | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,7 +12,7 @@ to follow: | |||
| 12 | 12 | - [Coding Rules](#rules) | |
| 13 | 13 | - [Commit Message Guidelines](#commit) | |
| 14 | 14 | - [Signing the CLA](#cla) | |
| 15 | - - [Updating the Public API](#public-api) | ||
| 15 | + - [Spam Policy](#spam-policy) | ||
| 16 | 16 | ||
| 17 | 17 | ## <a name="coc"></a> Code of Conduct | |
| 18 | 18 | Help us keep Angular open and inclusive. Please read and follow our [Code of Conduct][coc]. | |
@@ -289,6 +289,9 @@ changes to be accepted, the CLA must be signed. It's a quick process, we promise | |||
| 289 | 289 | * For corporations we'll need you to | |
| 290 | 290 | [print, sign and one of scan+email, fax or mail the form][corporate-cla]. | |
| 291 | 291 | ||
| 292 | + ## <a name="spam-policy"></a> Spam Policy | ||
| 293 | + | ||
| 294 | + See [Spam Policy](https://github.com/angular/angular/blob/main/contributing-docs/spam.md) for details. | ||
| 292 | 295 | ||
| 293 | 296 | [coc]: https://github.com/angular/code-of-conduct/blob/main/CODE_OF_CONDUCT.md | |
| 294 | 297 | [commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit# | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -168,7 +168,7 @@ Adding a package to this repository means running two separate commands: | |||
| 168 | 168 | ||
| 169 | 169 | 1. `schematics devkit:package PACKAGE_NAME`. This will update the `.monorepo` file, and create the | |
| 170 | 170 | base files for the new package (package.json, src/index, etc). | |
| 171 | - 1. `devkit-admin templates`. This will update the README and all other template files that might | ||
| 171 | + 1. `pnpm admin templates`. This will update the README and all other template files that might | ||
| 172 | 172 | have changed when adding a new package. | |
| 173 | 173 | ||
| 174 | 174 | For private packages, you will need to add a `"private": true` key to your package.json manually. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,7 +12,7 @@ to follow: | |||
| 12 | 12 | - [Coding Rules](#rules) | |
| 13 | 13 | - [Commit Message Guidelines](#commit) | |
| 14 | 14 | - [Signing the CLA](#cla) | |
| 15 | - - [Updating the Public API](#public-api) | ||
| 15 | + - [Spam Policy](#spam-policy) | ||
| 16 | 16 | ||
| 17 | 17 | ## <a name="coc"></a> Code of Conduct | |
| 18 | 18 | Help us keep Angular open and inclusive. Please read and follow our [Code of Conduct][coc]. | |
@@ -280,6 +280,9 @@ changes to be accepted, the CLA must be signed. It's a quick process, we promise | |||
| 280 | 280 | * For corporations we'll need you to | |
| 281 | 281 | [print, sign and one of scan+email, fax or mail the form][corporate-cla]. | |
| 282 | 282 | ||
| 283 | + ## <a name="spam-policy"></a> Spam Policy | ||
| 284 | + | ||
| 285 | + See [Spam Policy](https://github.com/angular/angular/blob/main/contributing-docs/spam.md) for details. | ||
| 283 | 286 | ||
| 284 | 287 | [coc]: https://github.com/angular/code-of-conduct/blob/main/CODE_OF_CONDUCT.md | |
| 285 | 288 | [commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit# | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -27,7 +27,7 @@ export default async function (options: { verbose: boolean }) { | |||
| 27 | 27 | await templates(); | |
| 28 | 28 | if (execSync(`git status --porcelain`).toString()) { | |
| 29 | 29 | console.error( | |
| 30 | - 'Running templates updated files... Please run "devkit-admin templates" before submitting a PR.', | ||
| 30 | + 'Running templates updated files... Please run "pnpm admin templates" before submitting a PR.', | ||
| 31 | 31 | ); | |
| 32 | 32 | if (!options.verbose) { | |
| 33 | 33 | process.exit(2); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments