Skip to content

Commit f255545

Browse files
authored
Merge pull request microsoft#1779 from microsoft/sachinjoseph/support-custom-environment-variables-for-install-manager
Add blank lines back in rush.schema.json
2 parents dbbe8d9 + 682c38a commit f255545

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/rush-lib/src/schemas/rush.schema.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"title": "Rush main config File",
44
"description": "The main configuration file for the Rush multi-project build tool. See http://rushjs.io for details.",
55
"type": "object",
6+
67
"definitions": {
78
"environmentVariables": {
89
"description": "Enviroment variables for the package manager",
@@ -21,26 +22,31 @@
2122
}
2223
}
2324
},
25+
2426
"properties": {
2527
"$schema": {
2628
"description": "Part of the JSON Schema standard, this optional keyword declares the URL of the schema that the file conforms to. Editors may download the schema and use it to perform syntax highlighting.",
2729
"type": "string"
2830
},
31+
2932
"npmVersion": {
3033
"description": "If specified, selects NPM as the package manager and specifies the deterministic version to be installed by Rush.",
3134
"type": "string",
3235
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9a-zA-Z.+\\-]+$"
3336
},
37+
3438
"pnpmVersion": {
3539
"description": "If specified, selects PNPM as the package manager and specifies the deterministic version to be installed by Rush.",
3640
"type": "string",
3741
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9a-zA-Z.+\\-]+$"
3842
},
43+
3944
"yarnVersion": {
4045
"description": "If specified, selects Yarn as the package manager and specifies the deterministic version to be installed by Rush.",
4146
"type": "string",
4247
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9a-zA-Z.+\\-]+$"
4348
},
49+
4450
"rushVersion": {
4551
"description": "The version of the Rush tool that will be used to build this repository.",
4652
"type": "string",
@@ -298,4 +304,4 @@
298304
"rushVersion",
299305
"projects"
300306
]
301-
}
307+
}

0 commit comments

Comments
 (0)