-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Rush version to 5.147.0 and clean up configuration files
- Loading branch information
Showing
8 changed files
with
632 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,160 +1,6 @@ | ||
/** | ||
* This configuration file manages Rush's build cache feature. | ||
* More documentation is available on the Rush website: https://rushjs.io | ||
*/ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/build-cache.schema.json", | ||
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/build-cache.schema.json", | ||
"buildCacheEnabled": false, | ||
|
||
/** | ||
* (Required) EXPERIMENTAL - Set this to true to enable the build cache feature. | ||
* | ||
* See https://rushjs.io/pages/maintainer/build_cache/ for details about this experimental feature. | ||
*/ | ||
"buildCacheEnabled": false, | ||
|
||
/** | ||
* (Required) Choose where project build outputs will be cached. | ||
* | ||
* Possible values: "local-only", "azure-blob-storage", "amazon-s3" | ||
*/ | ||
"cacheProvider": "local-only", | ||
|
||
/** | ||
* Setting this property overrides the cache entry ID. If this property is set, it must contain | ||
* a [hash] token. | ||
* | ||
* Other available tokens: | ||
* - [projectName] Example: "@my-scope/my-project" | ||
* - [projectName:normalize] Example: "my-scope+my-project" | ||
* - [phaseName] Example: "_phase:test/api" | ||
* - [phaseName:normalize] Example: "_phase:test+api" | ||
* - [phaseName:trimPrefix] Example: "test/api" | ||
* - [os] Example: "win32" | ||
* - [arch] Example: "x64" | ||
*/ | ||
// "cacheEntryNamePattern": "[projectName:normalize]-[phaseName:normalize]-[hash]" | ||
|
||
/** | ||
* (Optional) Salt to inject during calculation of the cache key. This can be used to invalidate the cache for all projects when the salt changes. | ||
*/ | ||
// "cacheHashSalt": "1", | ||
|
||
/** | ||
* Use this configuration with "cacheProvider"="azure-blob-storage" | ||
*/ | ||
"azureBlobStorageConfiguration": { | ||
/** | ||
* (Required) The name of the the Azure storage account to use for build cache. | ||
*/ | ||
// "storageAccountName": "example", | ||
|
||
/** | ||
* (Required) The name of the container in the Azure storage account to use for build cache. | ||
*/ | ||
// "storageContainerName": "my-container", | ||
|
||
/** | ||
* The Azure environment the storage account exists in. Defaults to AzurePublicCloud. | ||
* | ||
* Possible values: "AzurePublicCloud", "AzureChina", "AzureGermany", "AzureGovernment" | ||
*/ | ||
// "azureEnvironment": "AzurePublicCloud", | ||
|
||
/** | ||
* An optional prefix for cache item blob names. | ||
*/ | ||
// "blobPrefix": "my-prefix", | ||
|
||
/** | ||
* If set to true, allow writing to the cache. Defaults to false. | ||
*/ | ||
// "isCacheWriteAllowed": true, | ||
|
||
/** | ||
* The Entra ID login flow to use. Defaults to 'AdoCodespacesAuth' on GitHub Codespaces, 'InteractiveBrowser' otherwise. | ||
*/ | ||
// "loginFlow": "InteractiveBrowser", | ||
|
||
/** | ||
* If set to true, reading the cache requires authentication. Defaults to false. | ||
*/ | ||
// "readRequiresAuthentication": true | ||
}, | ||
|
||
/** | ||
* Use this configuration with "cacheProvider"="amazon-s3" | ||
*/ | ||
"amazonS3Configuration": { | ||
/** | ||
* (Required unless s3Endpoint is specified) The name of the bucket to use for build cache. | ||
* Example: "my-bucket" | ||
*/ | ||
// "s3Bucket": "my-bucket", | ||
|
||
/** | ||
* (Required unless s3Bucket is specified) The Amazon S3 endpoint of the bucket to use for build cache. | ||
* This should not include any path; use the s3Prefix to set the path. | ||
* Examples: "my-bucket.s3.us-east-2.amazonaws.com" or "http://localhost:9000" | ||
*/ | ||
// "s3Endpoint": "https://my-bucket.s3.us-east-2.amazonaws.com", | ||
|
||
/** | ||
* (Required) The Amazon S3 region of the bucket to use for build cache. | ||
* Example: "us-east-1" | ||
*/ | ||
// "s3Region": "us-east-1", | ||
|
||
/** | ||
* An optional prefix ("folder") for cache items. It should not start with "/". | ||
*/ | ||
// "s3Prefix": "my-prefix", | ||
|
||
/** | ||
* If set to true, allow writing to the cache. Defaults to false. | ||
*/ | ||
// "isCacheWriteAllowed": true | ||
}, | ||
|
||
/** | ||
* Use this configuration with "cacheProvider"="http" | ||
*/ | ||
"httpConfiguration": { | ||
/** | ||
* (Required) The URL of the server that stores the caches. | ||
* Example: "https://build-cacches.example.com/" | ||
*/ | ||
// "url": "https://build-cacches.example.com/", | ||
|
||
/** | ||
* (Optional) The HTTP method to use when writing to the cache (defaults to PUT). | ||
* Should be one of PUT, POST, or PATCH. | ||
* Example: "PUT" | ||
*/ | ||
// "uploadMethod": "PUT", | ||
|
||
/** | ||
* (Optional) HTTP headers to pass to the cache server. | ||
* Example: { "X-HTTP-Company-Id": "109283" } | ||
*/ | ||
// "headers": {}, | ||
|
||
/** | ||
* (Optional) Shell command that prints the authorization token needed to communicate with the | ||
* cache server, and exits with exit code 0. This command will be executed from the root of | ||
* the monorepo. | ||
* Example: { "exec": "node", "args": ["common/scripts/auth.js"] } | ||
*/ | ||
// "tokenHandler": { "exec": "node", "args": ["common/scripts/auth.js"] }, | ||
|
||
/** | ||
* (Optional) Prefix for cache keys. | ||
* Example: "my-company-" | ||
*/ | ||
// "cacheKeyPrefix": "", | ||
|
||
/** | ||
* (Optional) If set to true, allow writing to the cache. Defaults to false. | ||
*/ | ||
// "isCacheWriteAllowed": true | ||
} | ||
"cacheProvider": "local-only" | ||
} |
0
common/git-hooks/commit-msg.sample → common/git-hooks/commit-msg
100644 → 100755
File renamed without changes.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.