mirror of
https://github.com/tiktok/sparo.git
synced 2024-11-14 19:35:12 -05:00
chore: update duplicated strings anywhere
This commit is contained in:
parent
cef003ff6e
commit
493a630be8
4 changed files with 19 additions and 12 deletions
|
@ -48,10 +48,9 @@
|
||||||
* A list of folders to be excluded from the checkout. This field takes precedence
|
* A list of folders to be excluded from the checkout. This field takes precedence
|
||||||
* over the "includeFolders" and "selections" fields, guaranteeing that the
|
* over the "includeFolders" and "selections" fields, guaranteeing that the
|
||||||
* specified path will definitely not be included.
|
* specified path will definitely not be included.
|
||||||
* Each path given should be relative to the root directory of the Monorepo.
|
* The paths should use forward slashes, without a leading slash, and should be to the
|
||||||
* Wildcards and glob patterns are not permitted due to a number of shortcomings.
|
* root folder of the monorepo. Wildcards and glob patterns are not supported for
|
||||||
* See the git sparse-checkout documentation for details:
|
* performance reasons.
|
||||||
* https://git-scm.com/docs/git-sparse-checkout#_internalsnon_cone_problems
|
|
||||||
*/
|
*/
|
||||||
"excludeFolders": [
|
"excludeFolders": [
|
||||||
// "path/to/exclude"
|
// "path/to/exclude"
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"argument": {
|
"argument": {
|
||||||
"description": "The selector argument, for example a project name or an expression such as \"tag:my-tag\".",
|
"description": "The selector argument, for example a project name or an expression such as \"tag:my-tag\".\nTo learn about Rush project tags, see this documentation:\nhttps://rushjs.io/pages/developer/project_tags/",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"includeFolders": {
|
"includeFolders": {
|
||||||
"description": "A list of arbitrary additional folders to be included for checkout, not necessarily corresponding to any workspace project.",
|
"description": "A list of arbitrary additional folders to be included for checkout, not necessarily corresponding to any workspace project.\nThe paths should use forward slashes, without a leading slash, and should be to the root folder of the monorepo. Wildcards and glob patterns are not supported for performance reasons.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"excludeFolders": {
|
"excludeFolders": {
|
||||||
"description": "A list of folders to be excluded from the checkout. This field takes precedence over the \"includeFolders\" and \"selections\" fields, guaranteeing that the specified path will definitely not be included.",
|
"description": "A list of folders to be excluded from the checkout. This field takes precedence over the \"includeFolders\" and \"selections\" fields, guaranteeing that the specified path will definitely not be included.\nThe paths should use forward slashes, without a leading slash, and should be to the root folder of the monorepo. Wildcards and glob patterns are not supported for performance reasons.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|
|
@ -23,6 +23,8 @@ To initialize a new Sparo profile, you can copy and paste the contents of this t
|
||||||
/**
|
/**
|
||||||
* For example, include all Rush projects tagged with "tag:my-team"
|
* For example, include all Rush projects tagged with "tag:my-team"
|
||||||
* as well as the dependency workspace projects needed to build them.
|
* as well as the dependency workspace projects needed to build them.
|
||||||
|
* To learn about Rush project tags, see this documentation:
|
||||||
|
* https://rushjs.io/pages/developer/project_tags/
|
||||||
*/
|
*/
|
||||||
// {
|
// {
|
||||||
// "selector": "--to",
|
// "selector": "--to",
|
||||||
|
@ -42,6 +44,9 @@ To initialize a new Sparo profile, you can copy and paste the contents of this t
|
||||||
/**
|
/**
|
||||||
* A list of arbitrary additional folders to be included for checkout,
|
* A list of arbitrary additional folders to be included for checkout,
|
||||||
* not necessarily corresponding to any workspace project.
|
* not necessarily corresponding to any workspace project.
|
||||||
|
* The paths should use forward slashes, without a leading slash, and should be to the
|
||||||
|
* root folder of the monorepo. Wildcards and glob patterns are not supported for
|
||||||
|
* performance reasons.
|
||||||
*/
|
*/
|
||||||
"includeFolders": [
|
"includeFolders": [
|
||||||
// "path/to/include"
|
// "path/to/include"
|
||||||
|
@ -51,6 +56,9 @@ To initialize a new Sparo profile, you can copy and paste the contents of this t
|
||||||
* A list of folders to be excluded from the checkout. This field takes precedence
|
* A list of folders to be excluded from the checkout. This field takes precedence
|
||||||
* over the "includeFolders" and "selections" fields, guaranteeing that the
|
* over the "includeFolders" and "selections" fields, guaranteeing that the
|
||||||
* specified path will definitely not be included.
|
* specified path will definitely not be included.
|
||||||
|
* The paths should use forward slashes, without a leading slash, and should be to the
|
||||||
|
* root folder of the monorepo. Wildcards and glob patterns are not supported for
|
||||||
|
* performance reasons.
|
||||||
*/
|
*/
|
||||||
"excludeFolders": [
|
"excludeFolders": [
|
||||||
// "path/to/exclude"
|
// "path/to/exclude"
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"argument": {
|
"argument": {
|
||||||
"description": "The selector argument, for example a project name or an expression such as \"tag:my-tag\".",
|
"description": "The selector argument, for example a project name or an expression such as \"tag:my-tag\".\nTo learn about Rush project tags, see this documentation:\nhttps://rushjs.io/pages/developer/project_tags/",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"includeFolders": {
|
"includeFolders": {
|
||||||
"description": "A list of arbitrary additional folders to be included for checkout, not necessarily corresponding to any workspace project.",
|
"description": "A list of arbitrary additional folders to be included for checkout, not necessarily corresponding to any workspace project.\nThe paths should use forward slashes, without a leading slash, and should be to the root folder of the monorepo. Wildcards and glob patterns are not supported for performance reasons.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"excludeFolders": {
|
"excludeFolders": {
|
||||||
"description": "A list of folders to be excluded from the checkout. This field takes precedence over the \"includeFolders\" and \"selections\" fields, guaranteeing that the specified path will definitely not be included.",
|
"description": "A list of folders to be excluded from the checkout. This field takes precedence over the \"includeFolders\" and \"selections\" fields, guaranteeing that the specified path will definitely not be included.\nThe paths should use forward slashes, without a leading slash, and should be to the root folder of the monorepo. Wildcards and glob patterns are not supported for performance reasons.",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
|
Loading…
Reference in a new issue